Thank you for the answer and yes, the both statements are the same. I just tried to show the different ways I wrote them.
Here is the logic I need to test:
If TableA.Quantity <= TableB.Total
Then If TableA.FieldA = 'x' Then "A"
Else If TableA.FiedlB = 'x'' Then "B"
Else If TableA.FieldC = 'x' Then "C"
The issue is, all the examples I found regarding If Else in Crystal test the same field, and in my case, after testing the first condition(first IF), I need to test 3 different fields.
Thank you in advance for any help.
Mari