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

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
lousmith22
Frequent Visitor

Multiple IF Conditions in Custom Column

Hi, I'm trying to work out the YTD variance but for revenue and expense account where the formula is different for both types, but need it in the one column, any help appreciated.
if ([Account Type Number]=6 and [Budget]=0)
then 0 else [#"YTD Variance $"]/[Budget]
else if
([Account Type Number]=4 and [Budget]=0) then 0 else [Budget]/[#"YTD Variance $"]

1 REPLY 1
jennratten
Super User
Super User

Hello - I think you are missing a piece of logic.  As your description is currently written, after the first else statement the evaluation would end because there is an if and an else with no other if in between.  What you have described says that the result should be 0 when the budget equals 0 and the Account Type Number equals either 4 or 6.  But it does not when the variance over budget should be returned vs. budget over variance or what the outcome should be if none of the scenarios resolve to true.  Below should get you started.  You will need to fill in the blanks with the correct logic.  I'll be glad to help if you will provide more info.

 

let 
varVarianceOverBudget = [#"YTD Variance $"]/[Budget],
varBudgetOverVariance = [Budget]/[#"YTD Variance $"]
in 
if [Budget] = 0 and ( [Account Type Number] = 6 or [Account Type Number] = 4) then 0
else if _____ then varVarianceOverBudget 
else if _____ then varBudgetOverVariance 
else _____

 

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.

March Power BI Update Carousel

Power BI Community Update - March 2026

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