Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
anne-sophie
Frequent Visitor

Dynamic distinctcount using a variable data

Hello community!

Here is an issue I keep thinking about without finding the solution...

I have 2 tables :

product

ProductCodeFirstReleaseEndOfProduct
PC_0102/01/1990 
PC_0201/06/2017 
PC_0301/06/2018 
PC_0401/06/2019 
PC_0501/06/2020 
PC_0601/01/2021 
PC_0702/01/1990 
PC_0802/01/199001/03/2018
PC_0902/01/199001/03/2019
PC_1002/01/199001/03/2020
PC_1102/01/199001/01/2021

and years:

Years
2018
2019
2020
2021

 

And I need to calculate how many products were live for each year (with a fixed date wihtin the year, for example Jan 1st) : for each row in Year table, calculate distinctcount(ProductCode) from Product table where FirstRelease <= 01/01/Year and (EndOfProduct is null or EndOfProduct > 01/01/Year).

I manage to do that in PowerQuery but I wonder if it's possible in DAX, as my product table has many many many rows and multiplying them by the number of years to evaluate is not the best. IRL, my ProductTable also have other columns which are used as filters in the report, that's why the counting needs to be dynamic.

 

Any help appreciated !

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@anne-sophie,

 

Try this measure. No relationship exists between the two tables.

 

Distinct Product Count =
VAR vYear =
    MAX ( Years[Year] )
VAR vStartDate =
    DATE ( vYear, 1, 1 )
VAR vProductRows =
    FILTER (
        Products,
        vStartDate >= Products[FirstRelease]
            && (
                vStartDate <= Products[EndOfProduct]
                    || ISBLANK ( Products[EndOfProduct] )
            )
    )
VAR vResult =
    CALCULATE ( DISTINCTCOUNT ( Products[ProductCode] ), vProductRows )
RETURN
    vResult

 

DataInsights_0-1610983735894.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

3 REPLIES 3
anne-sophie
Frequent Visitor

Thank you so much ! It works, and I understand the measure's code, so I've improved my DAX skill 🙂

@anne-sophie,

 

Glad to hear that worked, and that your DAX skills improved. 🙂





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




DataInsights
Super User
Super User

@anne-sophie,

 

Try this measure. No relationship exists between the two tables.

 

Distinct Product Count =
VAR vYear =
    MAX ( Years[Year] )
VAR vStartDate =
    DATE ( vYear, 1, 1 )
VAR vProductRows =
    FILTER (
        Products,
        vStartDate >= Products[FirstRelease]
            && (
                vStartDate <= Products[EndOfProduct]
                    || ISBLANK ( Products[EndOfProduct] )
            )
    )
VAR vResult =
    CALCULATE ( DISTINCTCOUNT ( Products[ProductCode] ), vProductRows )
RETURN
    vResult

 

DataInsights_0-1610983735894.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors