> I am trying to obtain an average of blood pressure over a period of time.
> The individual entries are in a single column but are in a combined format
[quoted text clipped - 3 lines]
> prior search. Unfortunately, I could not come across it again. Thanks for
> any help
Chuck:
My only problem with the below solution is that I have multiple columns next
to the column I want to average. By using the below method, I would need to
move data in many other columns to add the new column (resulting from the
split of the numbers). This would be somewhat impractical for me.
I seem to recall a formula that conditions either an average or sum that
simply takes a specified number of spaces from an entry and calculates the
result using, say, only the first three digits. If I could find this
formula, it would eliminate the need to create new columns.
Does the above ring any bells to you?
Que le vaya bien,
Gary
> You can highlight the column and then do Data > TextToColumns, and use the
> / as the delimiter.........this will separate the diastolic and systolic
[quoted text clipped - 11 lines]
> > prior search. Unfortunately, I could not come across it again. Thanks for
> > any help
Domenic - 27 Jan 2006 20:51 GMT
If your first number is always three digits and your second two digits,
try...
=AVERAGE(IF(A1:A100<>"",LEFT(A1:A100,3)+0))
and
=AVERAGE(IF(A1:A100<>"",RIGHT(A1:A100,2)+0))
Otherwise, try...
=AVERAGE(IF(A1:A100<>"",MID(A1:A100,1,FIND("/",A1:A100)-1)+0))
and
=AVERAGE(IF(A1:A100<>"",MID(A1:A100,FIND("/",A1:A100)+1,1024)+0))
These formulas need to be confirmed with CONTROL+SHIFT+ENTER, not just
ENTER.
Hope this helps!
> Chuck:
>
[quoted text clipped - 34 lines]
> > > for
> > > any help