Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
Anonymous
Not applicable

measure should give "1" when sum greater dan 0

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?

 

 

 

1 ACCEPTED SOLUTION
mehaboob557
Resolver III
Resolver III

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 

View solution in original post

1 REPLY 1
mehaboob557
Resolver III
Resolver III

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 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.