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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
Anonymous
Not applicable

Nested If DAX error in calculated column

Hi Experts

 

cannot see where i have made my error - with the following dax 

New = IF('Master Call Quality Table'[Form Component Title] = "Experience", [Answer Title] ||
        IF('Master Call Quality Table'[Form Component Title] = "Contact Medium", [Answer Title], BLANK()))
1 ACCEPTED SOLUTION
Dangar332
Super User
Super User

hi, @Anonymous 

try below

 

IF(
 'Master Call Quality Table'[Form Component Title] = "Experience" ||
 'Master Call Quality Table'[Form Component Title] = "Contact Medium",
 [Answer Title],
 BLANK()
)

 

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

 

View solution in original post

1 REPLY 1
Dangar332
Super User
Super User

hi, @Anonymous 

try below

 

IF(
 'Master Call Quality Table'[Form Component Title] = "Experience" ||
 'Master Call Quality Table'[Form Component Title] = "Contact Medium",
 [Answer Title],
 BLANK()
)

 

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

 

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.