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.
Hi,
i have data like this in my report,
and i need to write DAX/IF statement in power bi, which is similar to below formula.
if(([OVER]+[LOW]+[RIGHT]) <> 0) then ([RIGHT]/([OVER]+[LOW]+[RIGHT])) else null AS CORRECTSTOCK
(this formula i used in cognos)
Is it possible to write a formula like this in power bi? (result should be same as cognos formula)
Thanks in Advance.
Solved! Go to Solution.
You can try this measure
Measure= VAR __Over= SUM( table[over]) VAR __LOW = SUM( table[low]) VAR __Right = SUM( table[right]) VAR __TotalOLR = __Over+__LOW+__Right VAR __IfTrue = DIVIDE( __RIGHT, __TotalOLR VAR __IfFalse= SUM ( table[CorrectStock]) RETURN IF( __TotalOLR <> 0, __IfTrue, __IfFalse )
You can try this measure
Measure= VAR __Over= SUM( table[over]) VAR __LOW = SUM( table[low]) VAR __Right = SUM( table[right]) VAR __TotalOLR = __Over+__LOW+__Right VAR __IfTrue = DIVIDE( __RIGHT, __TotalOLR VAR __IfFalse= SUM ( table[CorrectStock]) RETURN IF( __TotalOLR <> 0, __IfTrue, __IfFalse )
Thank you so much.
User | Count |
---|---|
15 | |
8 | |
6 | |
6 | |
6 |
User | Count |
---|---|
23 | |
14 | |
13 | |
8 | |
8 |