View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Billy L[_2_] Billy L[_2_] is offline
external usenet poster
 
Posts: 4
Default Identify the row with specific criteria

Hi, Chuck,

it doesn't work... maybe I didn't specify my question clearly. Please see
the example below

A B C D
E F
1 Jan Vol Feb Vol Mar Vol Jan sale Feb sales
Mar Sales
2 product W 10 10 10 100
100
3 product X 10 100

4 product Y 10 10 10 100

5 product Z 10 10
100

I like to have a formula in column G to highlight product W (missing Jan
sales), Y (missing Jan & Mar sales) and Z (missing Feb sales). Thanks a lot.

Billy L





"CLR" wrote:

Maybe use something like this in a helper column........

=if(COUNTA(E2:Q2)=COUNTA(R2:AC2),"OK","INCOMPLETE" )

Change the ranges to fit as needed.......

Vaya con Dios,
Chuck, CABGx3



"Billy L" wrote:

Hi

I have a database where column A - D contain country, product, etc, column E
- Q contain Jan - Dec and full year volume while column E contain Jan - Dec
and full year sales value. Product has sales in particular month should also
has sales volume in the same month in principle. Since volume and sales are
derived from different sources, some products in particular months may
contain volume but no sales value.

I established conditional format, e.g. =and(e2<0, S=0) in the sales columns
to identify those cells, however, I have to review all (12) columns to
identify those products. How can I put a formula (in cell or conditional
format) to identify those products which contain whatever month has volume
but no sales in the same month.

Besides, I often use "sumproduct" (or "sum(if" ) to sum up in
multi-conditional circumstances, what is the purpose to put -- in sumproduct
formula, could you illustrate by an example.

Thank you.

Billy L