cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hello SAP experts,

I need some help with IF statement in Lunch Pad 4.3. I'm trying to create calculated column showing letter "G" if value is > 500.

=if([object]>500, "G") - giving me ERROR - Problem converting '500,' to a float.

0 Likes
View Entire Topic
zulo
Explorer
0 Likes

Thank you both, I figures that value was string, so =If(ToNumber([object]) > 500; "G") works with semicolon.