if statement

  • Thread starter Thread starter denise
  • Start date Start date
D

denise

Hello,

I need a formula that says that if this cell is equal to a
number than do the calculation otherwise blank. I have
text and numbers mixed together so I need to basically get
rid of the text. Any suggestions?

Thank you,

Denise
 
Denise,

Like this?

=IF(ISNUMBER(A1),A1*5,"")

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
Hello,

I need a formula that says that if this cell is equal to a
number than do the calculation otherwise blank. I have
text and numbers mixed together so I need to basically get
rid of the text. Any suggestions?

Thank you,

Denise

Something like:

=IF(ISNUMBER(A1),your_formula,"")


--ron
 
I'm actually a big fan of the LEN statement -- it goes
something like:

IF(LEN(A1)=X,then statement, else statement)
 

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

IF and THEN statements 5
If formula with dates 4
Excel Need Countifs Formula Help 0
Finding Text within an Array 2
Custom Number Format for text 8
Permutations with conflicting groups 1
If condition with text 3
IF statement 2

Back
Top