Hello,
After much research I haven't been able to find the formula I need.
I am looking for a formula that will return a value based on what was entered into A2. I would like to insert a value into A2 then have the formula return a specific value base on a range. The range would be: If A2 is greater than or equal to 1 but not greater than 85, then return 100. If A2 is equal to or greater than 86 but not greater than 185, then return 200. If A2 is equal to or greater than 186 but not greater than 285, then return 300. If A2 is equal to or greater than 286 but not greater than 385, than return 400. I know how to do this using nested IF statements but I exceed the 7 IF limit by a few which is why I was trying to use IFS(AND( but No luck.
This is where I started but always gets hung up.
=IFS(AND([@[Drop Length]]>1,[@[Drop Length]]<=85),100,([@[Drop Length]]>=86,[@[Drop Length]]<=185),200,"")
After much research I haven't been able to find the formula I need.
I am looking for a formula that will return a value based on what was entered into A2. I would like to insert a value into A2 then have the formula return a specific value base on a range. The range would be: If A2 is greater than or equal to 1 but not greater than 85, then return 100. If A2 is equal to or greater than 86 but not greater than 185, then return 200. If A2 is equal to or greater than 186 but not greater than 285, then return 300. If A2 is equal to or greater than 286 but not greater than 385, than return 400. I know how to do this using nested IF statements but I exceed the 7 IF limit by a few which is why I was trying to use IFS(AND( but No luck.
This is where I started but always gets hung up.
=IFS(AND([@[Drop Length]]>1,[@[Drop Length]]<=85),100,([@[Drop Length]]>=86,[@[Drop Length]]<=185),200,"")