· If the value is greater than 80 and Units are F, then ‘Hot’. Otherwise ‘Not Hot’
· If the value is greater than 26 and Units are C, then ‘Hot’. Otherwise ‘Not Hot’
Complete the below DAX expression by replacing [VALUE]:
Category =
[VALUE] ( [VALUE] ( [VALUE] (Temperature[Value] > 80,Temperature[Units]=“F“), [VALUE] (Temperature[Value] > 26,Temperature[Units]=“C“) ),“Hot“,“Not Hot“)

Select 1 option(s):