Formula questions

G

Guest

I am trying to write a formula that checks the number in cell B4 and if it is
between 1 and 52 then "A" would be placed in cell B6 but if the number was
greater thatn 52 but less than 99 then "B" would be placed in cell B6 ect.

Where do I start. What fomula should I use.

Thank you for your help
 
B

Bob Phillips

In B6: =IF(AND(B4>1,B4<=52),"A"),B4<99,"B",""))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
G

Guest

Bob,

I get an error when using this formula. Could you please check, as I it's
above my head.
 
B

Bob Phillips

Sorry, my error

=IF(AND(B4>1,B4<=52),"A",IF(B4<99,"B",""))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 
G

Guest

Thank you again

Bob Phillips said:
Sorry, my error

=IF(AND(B4>1,B4<=52),"A",IF(B4<99,"B",""))

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

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