Needing simple formula

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I know it's simple, but I don't know how to write it. G3 contains a number.
If G3 starts with a 3 then it's to yield "ZMO" in H3. If it's anything else,
H3 is to be blank.

Connie
 
=IF(LEFT(G3,1)="3","ZMO","")

--
HTH

Bob Phillips

(replace somewhere in email address with googlemail if mailing direct)
 
=if(left(G3,1)="3","ZMO","")

Keep in mind that "" is NOT blank, it just displays as blank
 
Thank you! That works perfectly!

Bob Phillips said:
=IF(LEFT(G3,1)="3","ZMO","")

--
HTH

Bob Phillips

(replace somewhere in email address with googlemail if mailing direct)
 
Thank you! You and Bob have the exact same answer and it works perfectly!
 
You guys all know your stuff! You all have the exact same answer! Thank
you. I knew it was simple, but .... it's not one I've had to use until now.
Thanks again!
 

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

Similar Threads

Help with tweaking formula 2
Excel What does "P"means in Excel 1
countif with AND comparing 3 columns 1
Excel formula for inventory problem 2
Complex Conditional 10
Simple SumIF Question? 2
averages for cells 6
Vendor List 6

Back
Top