Sagar
Sagar

Reputation: 1

Checking multiple conditions in If statement in crystal report

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

Answers (1)

Waqar
Waqar

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

Related Questions