How to to put together this function below

P

Pat Miller

How put together this formula to determine if my blood pressure is in normal
range:

If =<120 return "Normal"
If between 121 and 139 return "Pre-hypertension"
If between 140 and 159 return "Stage One"
If greater than or equal to 160 "Stage Two"

Thanks in advance.
 
J

JE McGimpsey

One way:

=LOOKUP(A1,{0,"Normal";121,"Pre-hypertension"; 140,"Stage One"; 160,
"Stage 2"})
 
T

Teethless mama

=IF(A1<121,"Normal",IF(A1<140,"Pre-hypertension",IF(A1<160,"Stage One","Stage
Two")))
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top