On Thu, 02 Aug 2007 07:43:59 -0700, Arnold <(E-Mail Removed)> wrote:
>Thanks for responding Ron,
>
>I searched the groups for what you recommended, reviewing a couple of
>similar threads, including one that you contributed to: Use of Like
>to extract data, and Detecting a number versus text. However, I
>cannot see how to have formulas directly use these separate left-mid-
>right values formatted as TEXT.
Being more specific in your requirements, as you are below, will bring a more
applicable answer, usually.
>
>For instance, if the following values are in these cols:
>
>AZ BA BB BC ...
>201 323 434 <null>
>
>how could I write these formulas in cols such as:
>
>L
>=sum 'the 1st digits in all cells' (AZ09:IV09)
>
=SUMPRODUCT(--LEFT(TEXT(AZ09:IV09,"000"),1))
>M
>=sum 'the 2nd digits in all cells' (AZ09:IV09)
=SUMPRODUCT(--MID(TEXT(AZ09:IV09,"000"),2,1))
>
>N
>=sum 'the 3rd digits in all cells' (AZ09:IV09)
>
=SUMPRODUCT(--MID(TEXT(AZ09:IV09,"000"),3,1))
>
>as well as other general formulas requiring numeric values:
>
It is not clear to me what you want to do with the examples below. But perhaps
you can reason from the above solutions.
>F
>=count(AZ09:IV09)
>
>G
>=countif(AZ09:IV09,"0")
>
>H
>=countif(AZ09:IV09,">0")
>
>
>Thanks once again
--ron
|