Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How i can compare the value of two field in the script,
i want to do : IF( [Field_1] > [Field_2] then 'Value' ) as new_field.
Thanks
Then you could use:
IF([Field_1] > [Field_2], 'Value', 'SomeOtherValue' ) as new_field
- Marcus
Then you could use:
IF([Field_1] > [Field_2], 'Value', 'SomeOtherValue' ) as new_field
- Marcus
Please try this one:
IF( [Field_1] > [Field_2] , 'Value' ) as new_field
Thanks a lot Guys.