Forum Discussion
DeeS
9 years agoNew Member
DAX error message
Hi everyone, I really hope you can help, I'm completely new to PowerBI and DAX but am giving creating a new column a go in my dataset. I have the below but when I run it through a DAX checker and...
- 9 years ago
The AND function has only two arguments, use the && operator instead so it's easier to write.
SLA Met = IF ( [State Open] = "0" && [Incident Type] = "Incident" && [Work Time Duration Formatted] > 3, "Yes", IF ( [State Open] = "0" && [Incident Type] = "Service Request", "NO", "Open" ) )
marcorusso
9 years agoMost Valuable Professional
The AND function has only two arguments, use the && operator instead so it's easier to write.
SLA Met =
IF (
[State Open] = "0"
&& [Incident Type] = "Incident"
&& [Work Time Duration Formatted] > 3,
"Yes",
IF ( [State Open] = "0" && [Incident Type] = "Service Request", "NO", "Open" )
)DeeS
9 years agoNew Member
Thank you so sooo much marcorusso, this works perfectly!