Use the if then statement to increase the OD or the original duration by a factor that you want for example
if RESP EQ HARRIS
then OD EQ OD * 2
else OD EQ OD *1.5
Here if the condition that responsibility is by Harris the Original Duration is increase by 200% if not which is the rest it is only 150 %.
Study also the difference between an AND and OR in boolean algebra since an AND statement only is true when ALL conditions are met while in an OR statement is true if ANY one of the conditions is met or true.
Member for
18 years 11 monthsRE: Global Change
Use the if then statement to increase the OD or the original duration by a factor that you want for example
if RESP EQ HARRIS
then OD EQ OD * 2
else OD EQ OD *1.5
Here if the condition that responsibility is by Harris the Original Duration is increase by 200% if not which is the rest it is only 150 %.
Study also the difference between an AND and OR in boolean algebra since an AND statement only is true when ALL conditions are met while in an OR statement is true if ANY one of the conditions is met or true.
Regards,