The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I have a dax function that returns the total outstanding amount for values =1...and also a dax function that returns the sum of all the outstanding balance (0, and 1). What I want to do is to divide those two functions to get what I want (PAR= sum of outstanding balance for values=1/ sum of total outstanding balance. Or is there a way I could just get a add a column that contains only outstanding balance for values =1? see screenshot below.
Solved! Go to Solution.
Hi @emmanuelkamara1 ,
Create a new measure with below DAX:
New Measure = DIVIDE(CALCULATE(SUM('Table'[outstanding_balance]),'Table'[30+_or_not]=1),SUM('Table'[outstanding_balance]))
Give a thumbs up if this post helped you in any way and mark this post as solution if it solved your query !!!
Hi @emmanuelkamara1 ,
Create a new measure with below DAX:
New Measure = DIVIDE(CALCULATE(SUM('Table'[outstanding_balance]),'Table'[30+_or_not]=1),SUM('Table'[outstanding_balance]))
Give a thumbs up if this post helped you in any way and mark this post as solution if it solved your query !!!
User | Count |
---|---|
35 | |
14 | |
11 | |
11 | |
8 |
User | Count |
---|---|
44 | |
44 | |
19 | |
18 | |
17 |