Forum Discussion
ihartdata
7 years agoMicrosoft Employee
Calculated Column with Nested IF Statement, Use Contains, Search, Find??
I am trying to create a calculated column for a new triage status. So Far I have the following DAX, which covers bullets 1, 2 & 3 but I'm having a difficult time with the 4th and 5th bullets. I just...
- Anonymous7 years ago
ihartdata
I think this may assist.
First custom columnSemester Planning =
LOOKUPVALUE (
'Release Lookup'[Semester Planning],
'Release Lookup'[ReleaseTime], Features[ReleaseTime]
)Second custom column
ReviewStatus = IF ( Features[FeatureStatus] <> "Rejected" && Features[FeatureStatus] <> "Rejected - Workaround Available" && Features[FeatureStatus] <> "Generally Available" && Features[FeatureStatus] <> "Public Preview" && Features[FeatureStatus] <> "Private Preview" && Features[Semester Planning] <> "No Plan", "Not Planned", "Planned" )Thanks
A
Anonymous
7 years agoNot applicable
ihartdata
7 years agoMicrosoft Employee
Hi Anonymous, I can’t figure out how to add bullet 4 to the IF statement because there are 5 options to exclude and a reference from another table...
I was thinking maybe it was multiple OR statements with &&... but I couldn’t get it to work....
I was thinking maybe it was multiple OR statements with &&... but I couldn’t get it to work....
- Anonymous7 years agoNot applicable
Hey ihartdata
I suggest you would provide sample data and expected results.
It is hard to follow your examples and calculations.
CheerS!- ihartdata7 years agoMicrosoft Employee
Yes, I can see how that would be helpful. :) Here you go:
https://1drv.ms/u/s!AvNGvMlvmRwehaZW31CENJojdL6C1w?e=pWMYcd
Let me know what other questions you have and thank you for looking Anonymous
- Anonymous7 years agoNot applicable
ihartdata
Again,
I am having trouble understanding your syntax.Once you clarify what you need, we might assist.
CheerS!
A