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
Jo5hua22
Helper I
Helper I

Consecutive value being checked

Hi,

 

I would like your help to determine the below logic in the screenshot. Which is when there are consecutive values of "R" (more than 1 time) then the output should be displayed as "CHECK"

 

Jo5hua22_0-1645023590601.png

My current DAX code to determine CHECK/ NOT CHECK is given below

Output = 

var _seq = [S.No]
var _last = countx(filter(Table, Table[S.No] = _seq -1 && [KPI] = "R"),[S.No])
var _Next = countx(filter(Table, Table[S.No] = _seq +1 && [KPI] = "R"),[S.No])
return
Switch(True() ,
[KPI] = "R" && isblank(_last) && isblank(_next) , "No Check",
[KPI] = "R" && not(isblank(_last)) && isblank(_next) , "Check",
blank())

 

@amitchandak 

1 ACCEPTED SOLUTION
Jo5hua22
Helper I
Helper I

I found the answer

 

Output = 

var _seq = [S.No]
var _last = countx(filter(Table, Table[S.No] = _seq -1 && [KPI] = "R"),[S.No])
var _Next = countx(filter(Table, Table[S.No] = _seq +1 && [KPI] = "R"),[S.No])
return
Switch(True() ,
[KPI] = "R" && isblank(_last) && isblank(_next) , "No Check",
[KPI] = "R" &&

((not(isblank(_last)) && isblank(_next))||(not(isblank(_last)) && not(isblank(_next))))

, "Check",
blank())

View solution in original post

6 REPLIES 6
Jo5hua22
Helper I
Helper I

I found the answer

 

Output = 

var _seq = [S.No]
var _last = countx(filter(Table, Table[S.No] = _seq -1 && [KPI] = "R"),[S.No])
var _Next = countx(filter(Table, Table[S.No] = _seq +1 && [KPI] = "R"),[S.No])
return
Switch(True() ,
[KPI] = "R" && isblank(_last) && isblank(_next) , "No Check",
[KPI] = "R" &&

((not(isblank(_last)) && isblank(_next))||(not(isblank(_last)) && not(isblank(_next))))

, "Check",
blank())

Jo5hua22
Helper I
Helper I

@tamerj1 @amitchandak 
Can you please help me out?

tamerj1
Super User
Super User

It depends. What the other filters? Certin values for other colums? Can you send sample file?

Please find more detailed information. Basically if I know how to add filters in a Lookup inside an IF condition, I can solve it.

 

Jo5hua22_0-1645027661559.png

 

tamerj1
Super User
Super User

This calculated column should work:
Output =
IF (
Table[KPI] = "R",
IF (
LOOKUPVALUE ( Table[KPI], Table[S.No], Table[S.No] - 1 ) = "R",
"Check"
)
)

If ok, please consider marking my reply as accepted. Thank you!

Hi @tamerj1 

 

Thanks for the help. 

If I need more filters because I have a dataset with 2M rows, then where can I add the filter in your above DAX code?

 

Thanks in advance

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