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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Total of a column

Hi,

i have two measures (simply filtered sum), if i put these in a table i cant see total of a measure.

They are formatting like "decimal number"

 

Why?

image.png

 

Thanks

1 ACCEPTED SOLUTION
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

I can reproduce your problem.

It can be fixed with [Meausre 3], [Measure 4]

 

Measure = IF(SUM(Table1[value1])>SUM(Table2[value2]),SUM(Table1[value1])-SUM(Table2[value2]))

Measure 2 = IF(SUM(Table1[value1])<=SUM(Table2[value2]),SUM(Table2[value2])-SUM(Table1[value1]))

Measure 3 = IF(HASONEVALUE(Table1[id]),[Measure],SUMX(ALL(Table1[id]),[Measure]))

Measure 4 = IF(HASONEVALUE(Table1[id]),[Measure 2],SUMX(ALL(Table1[id]),[Measure 2]))

Capture20.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

5 REPLIES 5
v-juanli-msft
Community Support
Community Support

Hi @Anonymous 

I can reproduce your problem.

It can be fixed with [Meausre 3], [Measure 4]

 

Measure = IF(SUM(Table1[value1])>SUM(Table2[value2]),SUM(Table1[value1])-SUM(Table2[value2]))

Measure 2 = IF(SUM(Table1[value1])<=SUM(Table2[value2]),SUM(Table2[value2])-SUM(Table1[value1]))

Measure 3 = IF(HASONEVALUE(Table1[id]),[Measure],SUMX(ALL(Table1[id]),[Measure]))

Measure 4 = IF(HASONEVALUE(Table1[id]),[Measure 2],SUMX(ALL(Table1[id]),[Measure 2]))

Capture20.JPG

Best Regards
Maggie
Community Support Team _ Maggie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Anonymous
Not applicable

It works!

 

Thanks!

lc_finance
Solution Sage
Solution Sage

Hi @Anonymous ,

 

can you share the formula for these measures?

 

Regards,

 

LC

Anonymous
Not applicable

Sure,
 
=if(sum(PRD_PRODJURNALROUTE[Tempo_Bollato]) > sum(OrePresenza[Ore di presenza]); sum(PRD_PRODJURNALROUTE[Tempo_Bollato]) - sum(OrePresenza[Ore di presenza]))
 
 
 

Hi @Anonymous ,

 

 

the reason is that your formula also applies to the total.

For Total, 'tempo bollato' is higher than 'ore di presenza', so only your first formula gets calculated and not the second one.

 

If possible with your data model, the easiest way to fix this is to move your formula from a calculated measure to a calculated column. With a calculated column:

- the formula is calculated for each row

- the total is a sum of the rows

You can create a calculated column by going to Modeling -> New Column

 

Let me know if this works for you.

 

Regards,

LC

Interested in Power BI finance templates? Check out my blog at www.finance-bi.com

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.