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
manideep547
Helper III
Helper III

count of the common values in measure

Hi All,

I have a scenario. I need to get repeated values in a measure based on some date constraint.

Example:

 Ids' may repeat in year.

I need a distinct count of Ids which are present in the first half as well as in the second half if I add date constraint as 6 months.

  In Slicer start date 1/06/2011 to 1/12/2011
Id      Date             Amount        Status(Measure)
1000      1/1/2011        25.00           Inactive
2000      2/2/2011        500.00          Inactive
1000      1/08/2011       89.00           active
2000      01/09/2011     45.00          Active
 Now I require the count of id. The output should be 2. 

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

Hi , @manideep547 

 Please try  the  measure as below :

 

count of id = 
COUNTROWS (
    FILTER (
        SUMMARIZE (
            'Table',
            'Table'[Id],
            "InDate", CALCULATE (
                SUM ( 'Table'[Amount ] ),
                'Table'[Date] IN FILTERS ( 'Date'[Date] )
            ),
            "OutDate", CALCULATE (
                SUM ( 'Table'[Amount ] ),
                NOT 'Table'[Date] IN FILTERS ( 'Date'[Date] )
            )
        ),
        [InDate] <> [OutDate]
    )
)

 

And it shows  as below :

25.png

Here  is  a sample :

https://wicren-my.sharepoint.com/:u:/g/personal/michael_wicren_onmicrosoft_com/EX76fEd_vw9GoBIJkSjHa... 

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

1 REPLY 1
v-easonf-msft
Community Support
Community Support

Hi , @manideep547 

 Please try  the  measure as below :

 

count of id = 
COUNTROWS (
    FILTER (
        SUMMARIZE (
            'Table',
            'Table'[Id],
            "InDate", CALCULATE (
                SUM ( 'Table'[Amount ] ),
                'Table'[Date] IN FILTERS ( 'Date'[Date] )
            ),
            "OutDate", CALCULATE (
                SUM ( 'Table'[Amount ] ),
                NOT 'Table'[Date] IN FILTERS ( 'Date'[Date] )
            )
        ),
        [InDate] <> [OutDate]
    )
)

 

And it shows  as below :

25.png

Here  is  a sample :

https://wicren-my.sharepoint.com/:u:/g/personal/michael_wicren_onmicrosoft_com/EX76fEd_vw9GoBIJkSjHa... 

 

Best Regards,
Community Support Team _ Eason
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.