Forum Discussion
kotlonarendra
4 years agoFrequent Visitor
Unable to perform conditional comparisons between tow decimal values from two different columns
I have a table which has list of windows OS version (data type is decimal) osVersiondetailed osVersiondetailed 20,348.1503 20,348.1535 20,348.1450 20,348.1432 20,348.1447 20,34...
- 4 years ago
Hello kotlonarendra ,
Please try the below formula:
onLatestOSVersionv1 = VAR LookupLastestVersion = MINX(VALUES(latestOSVersion[detailedVersion]),latestOSVersion[detailedVersion]) RETURN IF('IntuneHoloLensDevices'[osVersiondetailed] >= LookupLastestVersion, TRUE(), FALSE())Please let me know if this doesn't work.
rajulshah
Resident Rockstar
4 years agoHello kotlonarendra ,
Please try the below formula:
onLatestOSVersionv1 =
VAR LookupLastestVersion = MINX(VALUES(latestOSVersion[detailedVersion]),latestOSVersion[detailedVersion])
RETURN
IF('IntuneHoloLensDevices'[osVersiondetailed] >= LookupLastestVersion, TRUE(), FALSE())
Please let me know if this doesn't work.
- kotlonarendra4 years agoFrequent Visitor
Thanks, your solution worked.
Regards,
Naren