Reputation: 1
I am new to Crystal reports.
In programming (Ex. in c), I can check two conditions in one single if statement.
ex. if(A && B)
How this can be done in Crystal Reporting?
Upvotes: 0
Views: 17210
Reputation: 226
you need to put AND instead of && to achieve this in CR. Like this
if (something >=5) AND (something <10) then
something
Upvotes: 4