This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi
I need a table with the sum of worked hours (value), but the value has to be "1" if the total is greater dan 0
week 1 | week 2 | week 3
John 50 | 0 | 32
Peter 0 | 10 | 15
The result should be:
weak 1 | week 2 | week 3
John 1 | 0 | 1
Peter 0 | 1 | 1
Do you have a suggestion?
Solved! Go to Solution.
Hi @Anonymous,
I am assuming Jhon and Peter column name as name.
i am writing 4 measures,
Measure = SUM(Table1[week1]) Measure 2 = IF([Measure]>0,1,0) Measure3 = SUM(Table1[week2]) Measure 4 = IF([Measure3]>0,1,0)
Use Measure 2 and Mease 4 in table visual.. u will get the final output
OR
If you want to calculate with the each name,
week measure= CALCULATE(SUM(Table1[week1]), ALLEXCEPT(Table1,Table1[name])) Final Measure = IF([week measure]>0,1,0)
Find the pbix file here
Hi @Anonymous,
I am assuming Jhon and Peter column name as name.
i am writing 4 measures,
Measure = SUM(Table1[week1]) Measure 2 = IF([Measure]>0,1,0) Measure3 = SUM(Table1[week2]) Measure 4 = IF([Measure3]>0,1,0)
Use Measure 2 and Mease 4 in table visual.. u will get the final output
OR
If you want to calculate with the each name,
week measure= CALCULATE(SUM(Table1[week1]), ALLEXCEPT(Table1,Table1[name])) Final Measure = IF([week measure]>0,1,0)
Find the pbix file here
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 28 | |
| 27 | |
| 20 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 33 | |
| 26 | |
| 24 |