Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
I'm trying to create a custom column but I can't seem to get the formula right. I get the message literal value expected.
Any idea where I'm going wrong?
if ([Column] >= 6.1 && [Column] <= 7.0) then “Value1" else if [Column] >= 4.78 and [Column] <= 4.99 then “Value2” else if [Column] >= 3.21 and [Column] <= 3.5 then “Value3” else if [Column] >= 1.4 and [Column] <= 3.20 then “Value4” else “”
Solved! Go to Solution.
Got it working. Think it was a case of quotes in the wrong places
if [Column]>= 6.1 and [Column] <=7.0 then "Value1" else if [Column] >= 4.78 and [Column] <= 4.99
then "Value2"
else if [Column] >= 3.21 and [Column]<= 3.5
then "Value3"
else if [Column]>= 1.4 and [Column] <= 3.20
then "Value4"
else null
Hi,
Try using and instead of &&
Hi
I tried it with And instead of && but it was tagging the error as being just before the 1st then
Got it working. Think it was a case of quotes in the wrong places
if [Column]>= 6.1 and [Column] <=7.0 then "Value1" else if [Column] >= 4.78 and [Column] <= 4.99
then "Value2"
else if [Column] >= 3.21 and [Column]<= 3.5
then "Value3"
else if [Column]>= 1.4 and [Column] <= 3.20
then "Value4"
else null
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
85 | |
79 | |
54 | |
39 | |
35 |
User | Count |
---|---|
102 | |
80 | |
48 | |
48 | |
48 |