O
Old Red One
How does one average blood pressure readings? Please give an actual
example, such as 152/65.
example, such as 152/65.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Biff said:Just for the heck of it...........
A1 = 152/65
A2 = 147/72
A3 = 147/70
=ROUND(SUMPRODUCT(--(LEFT(A1:A3,FIND("/",A1:A3)-1)))/ROWS(A1:A3),0)&"/"&ROUND(SUMPRODUCT(--(MID(A1:A3,FIND("/",A1:A3)+1,5)))/ROWS(A1:A3),0)
Returns: 149/69
I don't know anything about blood pressures but you can shorten the
formula if the first value is always 3 digits and the second value is
always 2 digits:
=ROUND(SUMPRODUCT(--(LEFT(A1:A3,3)))/ROWS(A1:A3),0)&"/"&ROUND(SUMPRODUCT(--(RIGHT(A1:A3,2)))/ROWS(A1:A3),0)
Biff
Just for the heck of it...........
A1 = 152/65
A2 = 147/72
A3 = 147/70
=ROUND(SUMPRODUCT(--(LEFT(A1:A3,FIND("/",A1:A3)-1)))/ROWS(A1:A3),0)&"/"
&ROUND(SUMPRODUCT(--(MID(A1:A3,FIND("/",A1:A3)+1,5)))/ROWS(A1:A3),0)
....Returns: 149/69
I don't know anything about blood pressures but you can shorten the formula
if the first value is always 3 digits and the second value is always 2
digits:
Just for the heck of it...........
A1 = 152/65
A2 = 147/72
A3 = 147/70
=ROUND(SUMPRODUCT(--(LEFT(A1:A3,FIND("/",A1:A3)-1)))/ROWS(A1:A3),0)&"/"
&ROUND(SUMPRODUCT(--(MID(A1:A3,FIND("/",A1:A3)+1,5)))/ROWS(A1:A3),0)
....Returns: 149/69
I don't know anything about blood pressures but you can shorten the formula
if the first value is always 3 digits and the second value is always 2
digits:
=ROUND(AVERAGE(INT(SUBSTITUTE(A1:A3,"/","."))),0)&"/"
&ROUND(AVERAGE(--MID(A1:A4,FIND("/",A1:A3)+1,4)),0)
Old Red One said:Many, Many thanks. I got 149/70 but I input A1 as 152/68.
152/68
147/72
147/70
149/70
Did you work up this formula on your own? Again thanks, Buck Jordan.
I happen to have workbook for this exact task.Old Red One said:How does one average blood pressure readings? Please give an actual
example, such as 152/65.
GSalisbury said:I happen to have workbook for this exact task.
It's self-contained Excel97 - no macros.
You can enter up to four sets readings (high/low/pulse) across a line and
each line is a day.
The date and times rounded to nearest five minutes are automatically
posted.
The min, maxes and averages are all automatically calculated.
I'd be happy to send it to you as an example.
Geo. Salisbury
Yes it is my own construction but I did get some good pointers here in thisOld Red One said:It would be most interesting to see;lease do send it. Is it your own work?
Please also give your correct e-mail address. Thanks, Buck Jordan.
(e-mail address removed).
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.