cancel
Showing results for 
Search instead for 
Did you mean: 

Nested if statement

Former Member
0 Kudos

What's the best approach to capture the following:

if Days worked is >= 1800 and < 1830 then 5

else

if Days worked >=3600 and < 3630 then 10

else

if Days worked >= 5400 and 5430 then 15

Right now it doesn't like the AND operator and throws an Error.

Thanks

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

The following should work

if Days worked is >= 1800 and Days worked< 1830 then 5

else

if Days worked >=3600 and Days worked< 3630 then 10

else

if Days worked >= 5400 and Days worked < 5430 then 15

regards,

Raghavendra.G

Answers (0)