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
Anonymous
Not applicable

Distinct Count for ID R12

Hi, Need help to make a measure for distinct count R12 months for each date.

Uploaded the file . https://drive.google.com/file/d/1KN6iygNNM-v0TfSlpqlhJQ6aNip7pD03/view?usp=sharinghttps://drive.goog...

 

Thx

1 ACCEPTED SOLUTION
v-kelly-msft
Community Support
Community Support

Hi  @Anonymous ,

 

I made a simple table for example:

vkellymsft_1-1632298041794.png

 

First create a date table;

Then create a relationship between fact table and date table;

One method using "dateadd" function:

Create a calculated column as below:

Column = DATEADD('Table'[Date],-12,MONTH)

And a measure :

Distinct Count for ID R12 =
CALCULATE (
    DISTINCTCOUNT ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Date] < =MAX ( 'Table'[Date] )
            && 'Table'[Date] > MAX ( 'Table'[Column] )
    )
)

And you will see:

vkellymsft_0-1632298026623.png

Or you could use datesinperiod function instead;

Create a measure as below:

Distinct Count for ID R12 2 =
CALCULATE (
    DISTINCTCOUNT ( 'Table'[Value] ),
    DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -12, MONTH )
)

And you will see:

vkellymsft_2-1632298361518.png

For the related .pbix file,pls see attached.

 

Best Regards,
Kelly

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

View solution in original post

4 REPLIES 4
v-kelly-msft
Community Support
Community Support

Hi  @Anonymous ,

 

I made a simple table for example:

vkellymsft_1-1632298041794.png

 

First create a date table;

Then create a relationship between fact table and date table;

One method using "dateadd" function:

Create a calculated column as below:

Column = DATEADD('Table'[Date],-12,MONTH)

And a measure :

Distinct Count for ID R12 =
CALCULATE (
    DISTINCTCOUNT ( 'Table'[Value] ),
    FILTER (
        ALL ( 'Table' ),
        'Table'[Date] < =MAX ( 'Table'[Date] )
            && 'Table'[Date] > MAX ( 'Table'[Column] )
    )
)

And you will see:

vkellymsft_0-1632298026623.png

Or you could use datesinperiod function instead;

Create a measure as below:

Distinct Count for ID R12 2 =
CALCULATE (
    DISTINCTCOUNT ( 'Table'[Value] ),
    DATESINPERIOD ( 'Date'[Date], MAX ( 'Date'[Date] ), -12, MONTH )
)

And you will see:

vkellymsft_2-1632298361518.png

For the related .pbix file,pls see attached.

 

Best Regards,
Kelly

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

HotChilli
Super User
Super User

It still appears to be a big file.  Can you check please?

HotChilli
Super User
Super User

The file appears to be 94M (MB?) .  Any chance you could replace it with a smaller test file that illustrates the issue?

Anonymous
Not applicable

Sure, Now its smaller. The link is updated 🙂

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.