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
amitrathi239
Active Contributor

you need to use semicolon instead of comma in the formula.

=if([object]>500; ā€œGā€)


or another way to write if else statement

=if([Object]>500) then ā€œGā€