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
ssk_1984
Frequent Visitor

Count the Consecutive values 'not met' by group by dates

Hi,

 

Please help to add column to count the repetation of values by grouping the Date Columns.

 

Final IDSLA ResultReport DateCount
12Not Met01-10-20211
12Not Met01-11-20212
12Not Met01-12-20213
12Not Met01-07-20221
12Not Met01-08-20222
12Not Met01-10-20221
12Not Met01-11-2022

2

 

Here, Group dates by consecutively, If any blank/stop on the dates, again the group count it from 1,2,3

 

abouve data, Final 12, and not met contineously appearing Oct 2021 to Dec 2021, then values appearing as 1,2 ,3 

after no data mis from Jan to Jun, It starts from Jul 22 to Nov 2022. Then the count should starts again form 1,2 ,3,4

 

Please help 

1 ACCEPTED SOLUTION
v-zhangti
Community Support
Community Support

Hi, @ssk_1984 

 

You can try the following methods.
Column:

Previous Date = MAXX(FILTER(ALL('Table'),[Report Date]<EARLIER('Table'[Report Date])),[Report Date])
Diff = DATEDIFF([Previous Date],[Report Date],MONTH)
First day = IF([Diff]<>1,1,BLANK())
Consecutive days = 
VAR _lastdate =
    CALCULATE ( MAX ('Table'[Report Date]),
        FILTER ('Table',
            [Report Date] <= EARLIER ( 'Table'[Report Date])
                && [First day] = 1 ) )
Return
    CALCULATE (
        COUNT('Table'[Report Date]),
        FILTER ('Table',[Report Date]>= _lastdate
                && [Report Date] <= EARLIER ( 'Table'[Report Date]) ) )

vzhangti_0-1669713447200.png

Is this the result you expect?

Best Regards,

Community Support Team _Charlotte

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-zhangti
Community Support
Community Support

Hi, @ssk_1984 

 

You can try the following methods.
Column:

Previous Date = MAXX(FILTER(ALL('Table'),[Report Date]<EARLIER('Table'[Report Date])),[Report Date])
Diff = DATEDIFF([Previous Date],[Report Date],MONTH)
First day = IF([Diff]<>1,1,BLANK())
Consecutive days = 
VAR _lastdate =
    CALCULATE ( MAX ('Table'[Report Date]),
        FILTER ('Table',
            [Report Date] <= EARLIER ( 'Table'[Report Date])
                && [First day] = 1 ) )
Return
    CALCULATE (
        COUNT('Table'[Report Date]),
        FILTER ('Table',[Report Date]>= _lastdate
                && [Report Date] <= EARLIER ( 'Table'[Report Date]) ) )

vzhangti_0-1669713447200.png

Is this the result you expect?

Best Regards,

Community Support Team _Charlotte

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
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