how to write this condition in decision box
(year mod 400 = 0) or (year mod 4 = 0 and year mod 100 not = 0)
Hi
If you are dealing with int you should change ‘not =’ to ‘<>’.
Information can be check on:
<>
(Not equal to)
(year mod 400 = 0) or (year mod 4 = 0 and year mod 100 <> 0)