Forum Discussion

LeboeufHarry's avatar
LeboeufHarry
Helper I
2 years ago
Solved

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.

 

 

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())
 

 

  • Ritaf1983's avatar
    Ritaf1983
    2 years ago

    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 :

    The pbix is atached

5 Replies