Forum Discussion
Anonymous
3 years agoNot applicable
IF Statement plus Multiplication using static number
Hi all! Sorry if it's a silly one (because I feel like it should be a pretty straight forward one), but can I have help with the below please. I'm trying to replicate the formulae below in Po...
- Anonymous3 years ago
I found the answer here -> https://www.enjoysharepoint.com/power-bi-measure-multiply/ (Power BI Measure multiply by 100).
_GA Income Calcs = IF(SELECTEDVALUE('Single Donations'[GiftAid]) = "Yes", CALCULATE(SELECTEDVALUE('Single Donations'[amount]) * 0.25, FILTER('Single Donations', 'Single Donations'[GiftAid] = "Yes")), 0)Thank you so much for all your help with this, pratyashasamal .
Anonymous
2 years agoNot applicable
Hi LukeFPowerBI , please check my response to my own post here - I found a solution on that link I shared in my response. There is also the calculation I used.
From what I rmember, that worked fine.
Thanks,
Ana
LukeFPowerBI
2 years agoNew Member
Hi I also tried this
I also tried the second tip
Gift Aid Income = IF('vw_Transactions'[IsGiftAided]= "TRUE",CALCULATE(SUM('vw_Transactions'[DiscountedValue])*0.25),0)
For some reason the first past the IF('vw_Transactions'[IsGiftAided]= "TRUE" seems to only want to pick up measures that are created and not table data.