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
HS_PDS
Frequent Visitor

Calculated Column Nested If issue

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,"")))
I keep getting the following error:
 
"Function 'PlaceHolder' is not allowed as part of calculated column DAX expressons on DirectQuery Model"
 
I basically want to sum the numerator and divide by the period (1,3,12)
 
any direction is greatly appreciated, thanks in advance
1 ACCEPTED SOLUTION
edhans
Super User
Super User

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



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

1 REPLY 1
edhans
Super User
Super User

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



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

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.