Forum Discussion
jak8282
3 years agoHelper III
Calculated column not working
Hi, For some reason my calculated column is no working - all values are a decimal number. DAX is TestRange70to79.9 =
IF(
AND(
[Supplier Percentage Conv] >= 'Time Penalty'[Left...
Dhairya
3 years agoSolution Supplier
TestRange70to79.9 =
IF(
[Supplier Percentage Conv] >= 'Time Penalty'[LeftValue] AND
[Supplier Percentage Conv] <= 'Time Penalty'[right position],
"Yes",
"No"
)Please try this
- jak82823 years agoHelper III
That doesnt work it comes back with the error
The syntax for 'AND' is incorrect. (DAX(IF( [Supplier Percentage Conv] >= 'Time Penalty'[LeftValue] AND [Supplier Percentage Conv] <= 'Time Penalty'[right position], "Yes", "No"))).
I have also tried
TestRange70to79.9 = IF( [Supplier Percentage Conv] >= 'Time Penalty'[LeftValue] && [Supplier Percentage Conv] <= 'Time Penalty'[right position], "Yes", "No" )Which doesnt work either