Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Im trying to get this Nested IF statement to work:
Goal% = [Goal Count] / IF([Period] = "Current Month",1,IF([Period] = "Trailing 3" , 3,IF([Period] = "YTD" , 12,"")))
Solved! Go to Solution.
I'd need to see data to really see what is going on, but in your last IF statement, if it isn't "Current Month", "Trailing 3", or "YTD" it will try to divide by "", which cannot happen.
Try this to clean that up:
Goal% =
DIVIDE (
[Goal Count],
IF (
[Period] = "Current Month",
1,
IF ( [Period] = "Trailing 3", 3,
IF ( [Period] = "YTD", 12, 0 )
)
),
0
)That will provide a safe divide where dividing by zero will return zero instead of an error. THat might clean that Function Placeholder error
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingI'd need to see data to really see what is going on, but in your last IF statement, if it isn't "Current Month", "Trailing 3", or "YTD" it will try to divide by "", which cannot happen.
Try this to clean that up:
Goal% =
DIVIDE (
[Goal Count],
IF (
[Period] = "Current Month",
1,
IF ( [Period] = "Trailing 3", 3,
IF ( [Period] = "YTD", 12, 0 )
)
),
0
)That will provide a safe divide where dividing by zero will return zero instead of an error. THat might clean that Function Placeholder error
DAX is for Analysis. Power Query is for Data Modeling
Proud to be a Super User!
MCSA: BI ReportingCheck out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!