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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Charu
Post Patron
Post Patron

How to get an exact value in power Bi Report using Measures and Table Columns

Hi Everyone,

 

I got an issue getting the exact value in report, below are the calculations and measures I have used 

 


format for calculation1 is percentage and decimal value is 2
a) Calculation1 is a measure
b) Measure 1 is another measure and formula is
Measure 1 = CALCULATE (
SUM( Table [AMOUNT] ),
FILTER ( Table, Table[TAX] <> 0 || Table[TAX] <> BLANK() )
)
c) Calculation1 = (SUM(Table[Column 1])/[Measure 1])
example value : sum of Table[Column 1] = 443193.258213 and Measure 1 value = 6259604.89 so
443193.258213 / 6259604.89 = 0.07080211 (ie 7.08)
but in power bi report I'm getting the value as 7.12%

1 ACCEPTED SOLUTION
Zubair_Muhammad
Community Champion
Community Champion

Hi @Charu

 

Try this

 

Calculation1 =
VAR mymeasure = [Measure 1] 
RETURN 
SUM ( Table[Column 1] ) / mymeasure

 

View solution in original post

1 REPLY 1
Zubair_Muhammad
Community Champion
Community Champion

Hi @Charu

 

Try this

 

Calculation1 =
VAR mymeasure = [Measure 1] 
RETURN 
SUM ( Table[Column 1] ) / mymeasure

 

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.