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
Kote101
Helper II
Helper II

Counting Reoccurances.

Hi guys,
I am in need of help making a measure that marks each point in time an ID reoccurs. For example in the picture below i have 1 reoccurance of ID 1234 in which the ID repeats on the date Monday, July 01, 2013. I would like a measure that would log this and show a value of 1 at each date with a repeat ID.

 

Heres a link to the Power BI file and Excel File i am using; https://www.zeta-uploader.com/en/716253617

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

Hi @Kote101 

If i undertsand you right, create measures as below

repeat =
CALCULATE (
    COUNT ( Sheet1[ID] ),
    FILTER (
        ALL ( Sheet1 ),
        Sheet1[ID] = MAX ( Sheet1[ID] )
            && [Date End] <= MAX ( Sheet1[Date End] )
    )
)


show id = IF([repeat]>1,MAX(Sheet1[ID]),BLANK())

final show = IF([repeat]>1,1&" "&"ID:"&[show id])

7.png

 

If not, please let me know more details.

 

Best Regards

Maggie

 

Community Support Team _ Maggie Li
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

2 REPLIES 2
v-juanli-msft
Community Support
Community Support

Hi @Kote101 

If i undertsand you right, create measures as below

repeat =
CALCULATE (
    COUNT ( Sheet1[ID] ),
    FILTER (
        ALL ( Sheet1 ),
        Sheet1[ID] = MAX ( Sheet1[ID] )
            && [Date End] <= MAX ( Sheet1[Date End] )
    )
)


show id = IF([repeat]>1,MAX(Sheet1[ID]),BLANK())

final show = IF([repeat]>1,1&" "&"ID:"&[show id])

7.png

 

If not, please let me know more details.

 

Best Regards

Maggie

 

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

Greg_Deckler
Super User
Super User

You should be able to use EARLIER for this. See my article on Mean Time Before Failure (MTBF) which uses EARLIER: http://community.powerbi.com/t5/Community-Blog/Mean-Time-Between-Failure-MTBF-and-Power-BI/ba-p/3395...


@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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.