Forum Discussion
Calculated Column with Nested IF Statement, Use Contains, Search, Find??
- 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
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
ihartdata
Again,
I am having trouble understanding your syntax.
Once you clarify what you need, we might assist.
CheerS!
A
- ihartdata7 years agoMicrosoft Employee
Hi,
Sorry, let me simplify my inquiry.
using the example pbix file, I'm trying to create a calculated column. Where IF the column FeatureStatus in the Features table is anything other than Rejected, Rejected – Workaround Available, Generally Available, Public Preview, Private Preview AND the column Semester Planning in the Release Lookup table IS "No Plan" then it should be Not Planned, otherwise Planned.
Does that make sense Anonymous ?
- Anonymous7 years agoNot applicable
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