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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
yodha
Helper IV
Helper IV

IF statement in Power BI

Hi,

i have data like this in my report,

Capture.PNG

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.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

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
)

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

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.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors