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 have 2 tables:
and
How can I calculate DOH for a following result:
DOH item 111= 6 days (for usage Week N) + 161 days (23 weeks * 7 days) + 5 days (for usage Week N+24 for an average usage 1000 per day) = 172 days
DOH item 222 = 4 days (for usage Week N - with an average 75 usage/day)
DOH item 333 = 6 days (for usage Week N) + 7 days (for usage Week N+1) + 5 days (for usage Week N+2 - for an average usage 7000 per day)= 18 days
Thank you.
Solved! Go to Solution.
Hi @Madalin_Manaila ,
Please try to create measure with below dax formula:
DOH Calculation =
SUMX(
'YourTable',
IF(
'YourTable'[ItemID] = 111,
6 + (23 * 7) + 5,
IF(
'YourTable'[ItemID] = 222,
4,
IF(
'YourTable'[ItemID] = 333,
6 + 7 + 5,
0
)
)
)
)
This example is quite basic and assumes a static calculation. You'll need to replace the static numbers with the actual logic that calculates the days based on your weekly and daily usage data.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Madalin_Manaila ,
Please try to create measure with below dax formula:
DOH Calculation =
SUMX(
'YourTable',
IF(
'YourTable'[ItemID] = 111,
6 + (23 * 7) + 5,
IF(
'YourTable'[ItemID] = 222,
4,
IF(
'YourTable'[ItemID] = 333,
6 + 7 + 5,
0
)
)
)
)
This example is quite basic and assumes a static calculation. You'll need to replace the static numbers with the actual logic that calculates the days based on your weekly and daily usage data.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |