Hi All, hope you are doing well.
Trying to have multiple AND’s in an IF to reflect status and boundary between values. simple version below:
if(and(and({Area}=“NPG”,{Power Required}>10),{Power Required}<1000),610,“XX”))
i.e. if status is X and value is between A and B then it will cost us Y
thought that it may not work because AND returned true or false. so tried but still no luck
if(and(and({Area}=“NPG”,{Power Required}>10)=1,{Power Required}<1000),610,“XX”))
eventually want this to be a nested function for 8 different AREAs and power requirements.
any help to get this working would be great.
Rob