Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
27 |
User | Count |
---|---|
92 | |
50 | |
44 | |
40 | |
35 |