Forum Discussion
rmartin1
3 years agoFrequent Visitor
Dax formula help
Hi All, I was wonder if you can provide some help with dax formula is not working when I drop it in custom column. Update Status = IF ( [Operating System] = "Windows 10" && [OS Version] >= ...
Anonymous
3 years agoNot applicable
rmartin1
Try this Dax and check
Update Status =
IF (
[Operating System] = "Windows 10" && [OS Version] >= 2604 ||
[Operating System] = "Windows Server 2012" && [OS Version] >= 20821 ||
[Operating System] = "Windows Server 2019" && [OS Version] >= 4010 ||
[Operating System] = "Windows Server 2016" && [OS Version] >= 5717 ||
[Operating System] = "Oracle Enterprise Linux" && [OS Version] >= 88 ||
[Operating System] = "Red Hat Enterprise Linux" && [OS Version] >= 88 ||
[Operating System] = "Fedora Linux" && [OS Version] >= 37 ||
[Operating System] = "Debian Linux" && [OS Version] >= 17,
"Updated",
IF (
[Operating System] IN {"macOS Ventura", "macOS Big Sur", "macOS Monterey"} &&
NOT(ISBLANK([Update])),
"Updated",
"Not Updated"
)
)