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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
MCMM
Frequent Visitor

IF() DAX not working

Hi,

 

We are facing a really simple issue with IF() Dax. What we are trying to achieve is IF (A=0, B, A). For that, we created 3 measures:

A= amount for previous month

B = amount for before previous month

Last Closed Month = IF(A=0,B,A)

 

As you can see in the image below, both A and B measures work correctly, but the last closed month is retrieving A+B:

MCMM_0-1651741477402.png

We tried to change the logic to =BLANK(), =โ€โ€,<>0, <>BLANK()โ€ฆ but no matter what we do, the last measure keeps summing A+B.

Are we missing something here? We have never faced this issue with an IF statement beforeโ€ฆ.

1 ACCEPTED SOLUTION
v-xiaotang
Community Support
Community Support

Hi @MCMM 

The if function in table visual is fine, it is working properly. If you don't want the total in the total row, you can either turn it off or use hasonevalue() or hasonefilter() or isfiltered() to customize the value in the total

vxiaotang_1-1654250010744.png

vxiaotang_2-1654250128841.png

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
TOK
Helper II
Helper II

Hi @MCMM,

well the total row uses your logic on its aggregation. As A Total > 0, it will take A Total for Last Closed Month Total as your if statement says.

Can you upload your file?

Liked this post? More Content on:
https://www.youtube.com/channel/UC2lAgCgfyLCHsRv0h-ETBWQ

tamerj1
Super User
Super User

Hi @MCMM 
What do you mean by (keeps summing)? If your problem is with the wrong total then you may try

Last Closed Month =
SUMX (
    SUMMARIZE ( DateTable, DateTable[Year], DateTable[Month] ),
    CALCULATE ( IF ( A = 0, B, A ) )
)
v-xiaotang
Community Support
Community Support

Hi @MCMM 

The if function in table visual is fine, it is working properly. If you don't want the total in the total row, you can either turn it off or use hasonevalue() or hasonefilter() or isfiltered() to customize the value in the total

vxiaotang_1-1654250010744.png

vxiaotang_2-1654250128841.png

Best Regards,

Community Support Team _Tang

If this post helps, please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Fabric Update Carousel

Fabric Monthly Update - November 2025

Check out the November 2025 Fabric update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Users online (25)