Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 82 | |
| 48 | |
| 36 | |
| 31 | |
| 29 |