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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all,
I want a column that states Y/N if hours (time data type) are less than 09:30:00
is this possible? the formula below doesn't recognise 09:30:00
Solved! Go to Solution.
try also
IF(TIMEVALUE([Engage Hours per Day]) <= TIMEVALUE("09:30:00"), "yes", "no")
and what is [Engage Hours per Day]? is it measure or column? if a measure what the statement do you use?
try TIMEVALUE() function https://docs.microsoft.com/en-us/dax/timevalue-function-dax
IF([Engage Hours per Day] <= TIMEVALUE("09:30:00"), "yes", "no")
or
IF([Engage Hours per Day] <= TIME(9,30,0), "yes", "no")
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 38 | |
| 36 | |
| 33 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |