Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I feel like what I am trying to do is straightforward and I am missing the way to do it.
I have a measure that is:
Create a new column in you table:
After 4:00 = 'Attendance Review'[SignoutTime ] > TIMEVALUE("16:00") && OR(ISBLANK('Attendance Review'[Afternoon Bus ]),'Attendance Review'[Afternoon Bus ]="")
Then you can use it as a filter. Note that using IF statement you can return the values that you want on filter.
Proud to be a Super User!
Thanks, that didn't work either. I think my issue is my table is a summary / count table and I am trying to filter on individual items rather than the counts. My solution for now is to edit the query
#"dbo_Attendance Review" = Source{[Schema="dbo",Item="Attendance Review"]}[Data],
#"Filtered Rows" = Table.SelectRows(#"dbo_Attendance Review", each [SignoutTime] > #time(16, 0, 0))
It isn't as flexible but gets the job done.
Can you provide some sample data to work with? PBIX file with sample rows and description what do you expect (example) would be great. 🙂 You can use wetransfer.com to send data/pbix file.
Proud to be a Super User!
The data has student names so it is difficult to share. I am pulling from SQL View. I want to filter on one column being flase / null and another that is time being greater than 4:00 PM.
The final column in the table shows the count that is evaluating the forumla but I want to use that as a filter rather than a count.
Is there a way to enter a filter as a command rather than on a single field?