Novice at formulas needs help

  • Thread starter Thread starter marywatson
  • Start date Start date
M

marywatson

Please remember...I'm a novice at EXCEL...self-taught...I want to write
a formula that will convert what is in one column to another column
based on info in yet another column....
If D=1 and K=B then L=NH...another example...
If D=7 through 12(as in grade in school) and K=D then L=IH
 
Hi

use the IF formula. E.g. if your target cell is C1 enter the follwoing
=IF(A1="D",B1,"no value")
this will enter the value of B1 in C1 if A1 is "D"

have a look at the Excel helpfile for the IF formula
Frank
 
=IF(AND(D1=1,K1="B"), "NH","")
=IF(AND(D1>=7,D1<=12,K1="D"),"IH,"")
both are written for L1

to combine

=IF(AND(D1=1,K1="B"), "NH",IF(AND(D1>=7,D1<=12,K1="D"),"IH,""))

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(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

Back
Top