A number autofill !!

P

pano

Hi all,

Little help needed I have A1 A2 A3

A1 A2 A3
10 AA 1
4 AB 1
4 AA 1
Now A1 can contain a number from 1 to 300

A2 can contain a combo of 30 different letter combos which describes a
product sometimes they will be the same letter combo

I need A3 to scan thru A2 column as A2 is entered and populate A3 with
the number 1, it will always be 1, cannot be anything else.

Or just have the number 1 auto fill A3.

Am I thinking this is more complicated than it really is??

Any help appreciated..
Thanks
Stephen
 
G

Guest

I need A3 to scan thru A2 column as A2 is entered and populate A3 with
the number 1, it will always be 1, cannot be anything else.

Put in C2: =IF(B2="","",1)
Copy down as far as required

---
 
P

pano

After having another look at this I need the formula to allow a
product NH not to count as 1.
How would I exclude NH as zero and not show as 1????
 
M

Max

How would I exclude NH as zero and not show as 1?

In C2, copied down:
=IF(B2="","",IF(B2="NH",0,1))
 

Ask a Question

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.

Ask a Question

Top