Forum Discussion
ShreyasK
3 years agoFrequent Visitor
How to use AND function in Power BI
I have table in which I want to keep rows which contains "null" and In time is greater than 05:20 from "InTime" column. And exclude rest other rows. Can anyone please help me. Current Table: ...
- 3 years ago
Hi ShreyasK , you can use this measure:
In_Time = if(MAX('Table'[InTime])>TIME(5,20,0) || ISBLANK(max('Table'[InTime])),1,0)Follow, insert the measure "In_Time", in Filter, and give it the value 1, like the image:
Best regards
Bifinity_75
3 years agoSolution Sage
Hi ShreyasK , you can use this measure:
In_Time = if(MAX('Table'[InTime])>TIME(5,20,0) ||
ISBLANK(max('Table'[InTime])),1,0)
Follow, insert the measure "In_Time", in Filter, and give it the value 1, like the image:
Best regards