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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

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
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.