The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi All,
I hope someone can help me. I am using a measure to sum hours and divide by 8 and multiply by 7.5, but I don't want to do the last step (/8 * 7.5) for hours after 1st of January 2024. How can I fix this in my measure? The measure below is not working.
Thanks a lot!
Solved! Go to Solution.
@BYENER
Try this measure:
Bruto Hours X =
SUMX (
Hours,
IF (
Hours[Datum] < DATE ( 2024, 01, 01 ),
DIVIDE ( Hours[X], 8 ) * 7.5,
Hours[X]
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
@BYENER
Try this measure:
Bruto Hours X =
SUMX (
Hours,
IF (
Hours[Datum] < DATE ( 2024, 01, 01 ),
DIVIDE ( Hours[X], 8 ) * 7.5,
Hours[X]
)
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
81 | |
78 | |
37 | |
34 | |
31 |
User | Count |
---|---|
93 | |
81 | |
60 | |
49 | |
49 |