PC Review


Reply
Thread Tools Rate Thread

Averaging compound numbers, e.g. Blood Pressur

 
 
Old Red One
Guest
Posts: n/a
 
      25th Jul 2006
How does one average blood pressure readings? Please give an actual
example, such as 152/65.


 
Reply With Quote
 
 
 
 
Dave Peterson
Guest
Posts: n/a
 
      25th Jul 2006
Put each of the blood pressure readings in their own column:

So A2:A999 would hold the top (systolic) reading and
B2:B999 would hold the bottom (diastolic) reading.

Then you could use:

=average(a2:a999) to get the average sytolic
and
=average(b2:b999) to get the average diastolic



Old Red One wrote:
>
> How does one average blood pressure readings? Please give an actual
> example, such as 152/65.


--

Dave Peterson
 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      25th Jul 2006
To get averages of sistolic(high number) and diastolic(low number) pressures you
would have to have them in separate columns.

You would then take an average of each column.

Sistolic in Column A =AVERAGE(A:A)

Diastolic in Column B =AVERAGE(B:B)


Gord Dibben MS Excel MVP


On Mon, 24 Jul 2006 17:00:27 -0700, "Old Red One" <(E-Mail Removed)> wrote:

>How does one average blood pressure readings? Please give an actual
>example, such as 152/65.
>


 
Reply With Quote
 
Biff
Guest
Posts: n/a
 
      25th Jul 2006
Hi!

Do you mean you want the average of:

152/65
147/72
147/70

If so, split the values into separate cells then it's just a simple
=AVERAGE(.......) formula.

Use Text to Columns to split the values.

Select the range of cells in question, assume A1:A3
Make sure B1:B3 are empty otherwise any data in those cells will be
overwritten.
Goto the menu Data>Text to Columns
Select Delimited
Next
Select Other
In the little box to the right enter a forward slash: /
Click Finish.

Then you can just use the average formula.

Biff

"Old Red One" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> How does one average blood pressure readings? Please give an actual
> example, such as 152/65.
>



 
Reply With Quote
 
Biff
Guest
Posts: n/a
 
      25th Jul 2006
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

"Biff" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi!
>
> Do you mean you want the average of:
>
> 152/65
> 147/72
> 147/70
>
> If so, split the values into separate cells then it's just a simple
> =AVERAGE(.......) formula.
>
> Use Text to Columns to split the values.
>
> Select the range of cells in question, assume A1:A3
> Make sure B1:B3 are empty otherwise any data in those cells will be
> overwritten.
> Goto the menu Data>Text to Columns
> Select Delimited
> Next
> Select Other
> In the little box to the right enter a forward slash: /
> Click Finish.
>
> Then you can just use the average formula.
>
> Biff
>
> "Old Red One" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> How does one average blood pressure readings? Please give an actual
>> example, such as 152/65.
>>

>
>



 
Reply With Quote
 
Old Red One
Guest
Posts: n/a
 
      25th Jul 2006

"Biff" <(E-Mail Removed)> wrote in message
news:ucwK%(E-Mail Removed)...
> 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
>
> "Biff" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi!
>>
>> Do you mean you want the average of:
>>
>> 152/65
>> 147/72
>> 147/70
>>
>> If so, split the values into separate cells then it's just a simple
>> =AVERAGE(.......) formula.
>>
>> Use Text to Columns to split the values.
>>
>> Select the range of cells in question, assume A1:A3
>> Make sure B1:B3 are empty otherwise any data in those cells will be
>> overwritten.
>> Goto the menu Data>Text to Columns
>> Select Delimited
>> Next
>> Select Other
>> In the little box to the right enter a forward slash: /
>> Click Finish.
>>
>> Then you can just use the average formula.
>>
>> Biff
>>
>> "Old Red One" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> How does one average blood pressure readings? Please give an actual
>>> example, such as 152/65.


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.


 
Reply With Quote
 
Harlan Grove
Guest
Posts: n/a
 
      25th Jul 2006
Biff wrote...
>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)


There's a shorter way to deal with this using array entry.

=ROUND(AVERAGE(INT(SUBSTITUTE(A1:A3,"/","."))),0)&"/"
&ROUND(AVERAGE(--MID(A1:A4,FIND("/",A1:A3)+1,4)),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:

....

Second value could be over 100, and that's very bad.

Since 110/60,110/60,110/60,200/132 is worse than
125/78,125/78,125/78,125/78, I doubt means are as meaningful as medians
or percentiles if the

 
Reply With Quote
 
Harlan Grove
Guest
Posts: n/a
 
      25th Jul 2006
Biff wrote...
>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)


There's a shorter way to deal with this using array entry.

=ROUND(AVERAGE(INT(SUBSTITUTE(A1:A3,"/","."))),0)&"/"
&ROUND(AVERAGE(--MID(A1:A4,FIND("/",A1:A3)+1,4)),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:

....

Second value could be over 100, and that's very bad.

Since 110/60,110/60,110/60,200/132 is worse than
125/78,125/78,125/78,125/78, I doubt means are as meaningful as
percentiles or maximums if the goal is early warning for high blood
preasure.

 
Reply With Quote
 
Biff
Guest
Posts: n/a
 
      25th Jul 2006
>There's a shorter way to deal with this using array entry.

>=ROUND(AVERAGE(INT(SUBSTITUTE(A1:A3,"/","."))),0)&"/"
>&ROUND(AVERAGE(--MID(A1:A4,FIND("/",A1:A3)+1,4)),0)


I thought about using an array AVERAGE, although I didn't think about using
INT(SUBSTITUTE(A1:A3,"/",".")).

Very clever!

Biff

"Harlan Grove" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Biff wrote...
>>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)

>
> There's a shorter way to deal with this using array entry.
>
> =ROUND(AVERAGE(INT(SUBSTITUTE(A1:A3,"/","."))),0)&"/"
> &ROUND(AVERAGE(--MID(A1:A4,FIND("/",A1:A3)+1,4)),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:

> ...
>
> Second value could be over 100, and that's very bad.
>
> Since 110/60,110/60,110/60,200/132 is worse than
> 125/78,125/78,125/78,125/78, I doubt means are as meaningful as
> percentiles or maximums if the goal is early warning for high blood
> preasure.
>



 
Reply With Quote
 
Biff
Guest
Posts: n/a
 
      25th Jul 2006
"Old Red One" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> "Biff" <(E-Mail Removed)> wrote in message
> news:ucwK%(E-Mail Removed)...
>> 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
>>
>> "Biff" <(E-Mail Removed)> wrote in message
>> news:(E-Mail Removed)...
>>> Hi!
>>>
>>> Do you mean you want the average of:
>>>
>>> 152/65
>>> 147/72
>>> 147/70
>>>
>>> If so, split the values into separate cells then it's just a simple
>>> =AVERAGE(.......) formula.
>>>
>>> Use Text to Columns to split the values.
>>>
>>> Select the range of cells in question, assume A1:A3
>>> Make sure B1:B3 are empty otherwise any data in those cells will be
>>> overwritten.
>>> Goto the menu Data>Text to Columns
>>> Select Delimited
>>> Next
>>> Select Other
>>> In the little box to the right enter a forward slash: /
>>> Click Finish.
>>>
>>> Then you can just use the average formula.
>>>
>>> Biff
>>>
>>> "Old Red One" <(E-Mail Removed)> wrote in message
>>> news:(E-Mail Removed)...
>>>> How does one average blood pressure readings? Please give an actual
>>>> example, such as 152/65.

>
> 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.


This is a hobby for me!

Thanks for the feedback.

Biff


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
averaging numbers Jeff@nospam.invalid Microsoft Excel Discussion 5 20th Jan 2011 08:38 PM
Averaging Letters and Numbers alistair.douglas@gmail.com Microsoft Excel Programming 1 25th Sep 2006 02:14 PM
Re: Averaging Numbers when 2 numbers in one cell =?Utf-8?B?T3VyYW5pYQ==?= Microsoft Excel Worksheet Functions 1 12th Jan 2005 06:40 PM
Averaging numbers Donduk Microsoft Excel Discussion 5 20th Dec 2004 12:18 AM
Averaging compound numbers Old Red One Microsoft Excel Misc 4 14th Jun 2004 12:06 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 01:25 AM.