Forum Discussion
Anonymous
3 years agoNot applicable
Filter with multiple conditions plus OR
I'm creating a report that needs to list all units in a table that have a scanned in date of either: today with a time <+ 11:30 am OR yesterday with a time >= 11:30 am. Currently the date and time...
- 3 years ago
Hi Anonymous ,
Include = IF(AND(Max(FTable[Date])=TODAY(),MAX(FTable[Time])<= TIMEVALUE("11:30 AM")) || AND(Max(FTable[Date])=TODAY()-1,MAX(FTable[Time])>= TIMEVALUE("11:30 AM")),1,0)Please try this.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel - Anonymous3 years ago
Yes! That works - thank you! Is there a way to hide that column from the report?
Nathaniel_C
Community Champion
3 years agoHi Anonymous ,
Include = IF(AND(Max(FTable[Date])=TODAY(),MAX(FTable[Time])<= TIMEVALUE("11:30 AM")) || AND(Max(FTable[Date])=TODAY()-1,MAX(FTable[Time])>= TIMEVALUE("11:30 AM")),1,0)
Please try this.
Let me know if you have any questions.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos 👍are nice too.
Nathaniel