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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

DAX Code Explanation

Hi Experts,

 

I couldnt able to understand what does this DAX code means?

 

daxcodemean.PNGAnyone, Please help.

 

Thank you

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@Anonymous , if there is no value for sum, then give 0. It will create a left join with dimension

 

same as

sum('Financial Overview'[balance]) +0

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

AllisonKennedy
Community Champion
Community Champion

@Anonymous 

 

A DAX Measure can't be fully defined until you provide the context - so to truly explain what it gives you need to know what table/visual you're using it in, but I'll do my best.

 

Let's break it into parts. We have

SUM('Financial Overview'[Balance])

in there twice, so I'm going to call that [TotalBalance]:

[TotalBalance]  = SUM('Financial Overview'[Balance])

 

The [TotalBalance] is just adding up the value from the Balance column in the Financial Overview table. If you put this in a Card visual, it gives the Grand Total Balance. If you put this in a visual by Year, Month, it will filter the Financial Overview table for that year and month, and then add up all the values in the Balance column for those dates. 

 

Looking at the rest of the measure, now that we have defined [TotalBalance], we can then rewrite the measure as: 

 

Sum of Balance = IF( [TotalBalance] = BLANK() , 0, [TotalBalance] )

 

Which hopefully makes it a little easier to see that if the [TotalBalance] is blank (in other words there was no row in the Financial Overview table for that Year and Month), then replace it with 0, otherwise give the [TotalBalance]. This forces ALL months and years to be shown in the table visual, even if there was no balance record in the Financial Overview table on that month/year.

 

Does that help?

 

You could simplify this a bit by writing: 

Sum of Balance = 0 + SUM('Financial Overview'[Balance])

 

and you'll still get the same result.

 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

View solution in original post

2 REPLIES 2
AllisonKennedy
Community Champion
Community Champion

@Anonymous 

 

A DAX Measure can't be fully defined until you provide the context - so to truly explain what it gives you need to know what table/visual you're using it in, but I'll do my best.

 

Let's break it into parts. We have

SUM('Financial Overview'[Balance])

in there twice, so I'm going to call that [TotalBalance]:

[TotalBalance]  = SUM('Financial Overview'[Balance])

 

The [TotalBalance] is just adding up the value from the Balance column in the Financial Overview table. If you put this in a Card visual, it gives the Grand Total Balance. If you put this in a visual by Year, Month, it will filter the Financial Overview table for that year and month, and then add up all the values in the Balance column for those dates. 

 

Looking at the rest of the measure, now that we have defined [TotalBalance], we can then rewrite the measure as: 

 

Sum of Balance = IF( [TotalBalance] = BLANK() , 0, [TotalBalance] )

 

Which hopefully makes it a little easier to see that if the [TotalBalance] is blank (in other words there was no row in the Financial Overview table for that Year and Month), then replace it with 0, otherwise give the [TotalBalance]. This forces ALL months and years to be shown in the table visual, even if there was no balance record in the Financial Overview table on that month/year.

 

Does that help?

 

You could simplify this a bit by writing: 

Sum of Balance = 0 + SUM('Financial Overview'[Balance])

 

and you'll still get the same result.

 


Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

amitchandak
Super User
Super User

@Anonymous , if there is no value for sum, then give 0. It will create a left join with dimension

 

same as

sum('Financial Overview'[balance]) +0

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.