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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
LeboeufHarry
Helper I
Helper I

How To Ignore Column Value in a Measure

Hello,

 

I'm having a Matrix that holds values in the rows and in a column weather Yes or No the value was Budgetted.

We are Showing the % of the Row Value. But now I would also display the total amount, so that the user gets an idea that his (ex) 15% non budgetted is 15% of the total value (Bidgetted+Nonbudgetted)

 

The idea is that When Column is No we just use BLANK() so that there is never a value printed, and on the Yes column we show the sum of Yes and No. I know its a bit a strange way but for now I don't think I can get it visualized otherways.

 

LeboeufHarry_0-1714238156811.png

 

But my Dax formula doesn't work, this is what happens

 

c_Cost_ResPricing_Yes = IF (SELECTEDVALUE ( BillingData[Reserved_Pricing] ) = "Yes", CALCULATE([Cost], All(BillingData[Reserved_Pricing]) ), BLANK())
 
LeboeufHarry_1-1714238371786.png

 

1 ACCEPTED SOLUTION

Hi @LeboeufHarry 
If I understood you correctly you can use the measures :

base_sum = sum('Table'[Value])
Yes(%) = divide(CALCULATE([base_sum],'Table'[Reserved]="yes"),[base_sum])
No(#) = divide(CALCULATE([base_sum],'Table'[Reserved]="no"),[base_sum])
And put them in the table visual :
Ritaf1983_0-1714370780761.png

The pbix is atached

View solution in original post

5 REPLIES 5
LeboeufHarry
Helper I
Helper I

Even a better solution ! KR.

Happy to help 🙂

LeboeufHarry
Helper I
Helper I

Hereby the table of sample data and the wanted result for this data.

 

TypeReservedValue
S0Yes50
S0Yes10
S0No15
S1Yes100
S1No10
S2Yes200
S3No120

 

LeboeufHarry_0-1714307931478.png

 

Hi @LeboeufHarry 
If I understood you correctly you can use the measures :

base_sum = sum('Table'[Value])
Yes(%) = divide(CALCULATE([base_sum],'Table'[Reserved]="yes"),[base_sum])
No(#) = divide(CALCULATE([base_sum],'Table'[Reserved]="no"),[base_sum])
And put them in the table visual :
Ritaf1983_0-1714370780761.png

The pbix is atached

Ritaf1983
Super User
Super User

Hi @LeboeufHarry 

Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.

https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.