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

Consecutive Row Count from date between Current Month and follow up 2 month

Hi Team,

 

Pleaes help me to create measure to get the below results

 

VerticalREPORT_DATESLA_MISSESCurrent Month & Follow Two Months same value
BFS01-01-2022Met 
BFS01-02-2022Not Met1
BFS01-03-2022Not Met 
BFS01-04-2022Not Met 
CMT01-01-2022Not Met1
CMT01-02-2022Not Met1
CMT01-03-2022Not Met 
CMT01-04-2022Not Met 
Digi. Fin.01-01-2022Met 
Digi. Fin.01-02-2022Met 
Digi. Fin.01-03-2022Met 
HC01-01-2022Met 
HC01-02-2022Met 
HC01-03-2022Met 
INS01-01-2022Met 
INS01-02-2022Met 
INS01-03-2022Met 
LS01-01-2022Met 
LS01-02-2022Met 
LS01-03-2022Met 
RHCG01-03-2022Met 

 

from the above table of info, I want to count as one, when Current Month and followed by two Months is 'Not Met', Then current month counted as one. else no action.

 

Here Ref vertical 'CMT' from Jan to Apr, we have all 'not met' only, Considering Jan it should give me a value 1, Because Jan, feb & Mar has same value.

For feb Also 1, Current month Feb is not met and the consecutive 2 months not met, Mar & Apr...then Feb count as 1.

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @ssk_1984 
Please refer to attached sample file with the solution

1.png

Current Month & Follow Two Months same value = 
VAR CurrentDate = 'Table'[REPORT_DATE]
VAR CurrentVerticalTable = CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Vertical] ), 'Table'[REPORT_DATE] >= CurrentDate )
VAR T1 = ADDCOLUMNS ( CurrentVerticalTable, "@Rank1", RANKX ( CurrentVerticalTable, [REPORT_DATE],, ASC, Dense ) )
VAR T2 = FILTER ( T1, 'Table'[SLA_MISSES] = "Not Met" )
VAR T3 = ADDCOLUMNS ( T2, "@Rank2", RANKX ( T2, [REPORT_DATE],, ASC, Dense ) )
VAR T4 = FILTER ( T3, [@Rank1] = [@Rank2] )
VAR Result = IF ( COUNTROWS ( T4 ) >= 3, 1 )
RETURN
    Result

View solution in original post

3 REPLIES 3
ssk_1984
Frequent Visitor

I have wrongly given the dataset, I working fine...Gr8...Thank you very much

 

tamerj1
Super User
Super User

Hi @ssk_1984 
Please refer to attached sample file with the solution

1.png

Current Month & Follow Two Months same value = 
VAR CurrentDate = 'Table'[REPORT_DATE]
VAR CurrentVerticalTable = CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[Vertical] ), 'Table'[REPORT_DATE] >= CurrentDate )
VAR T1 = ADDCOLUMNS ( CurrentVerticalTable, "@Rank1", RANKX ( CurrentVerticalTable, [REPORT_DATE],, ASC, Dense ) )
VAR T2 = FILTER ( T1, 'Table'[SLA_MISSES] = "Not Met" )
VAR T3 = ADDCOLUMNS ( T2, "@Rank2", RANKX ( T2, [REPORT_DATE],, ASC, Dense ) )
VAR T4 = FILTER ( T3, [@Rank1] = [@Rank2] )
VAR Result = IF ( COUNTROWS ( T4 ) >= 3, 1 )
RETURN
    Result

Thank you for your time, 

 

ssk_1984_0-1671015683883.png

In this first one coming as wrong, for Dec...i dont have consecutive not met for Jan & Feb..But appearing as one count

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