Logical test

  • Thread starter Thread starter Sooraj
  • Start date Start date
S

Sooraj

Hi,
How to make a logical test using IF to verify whether the
multiplication of 2 cells gives a number or gives an error.
IF(D5*C5=?????, TRUE, False). What should I put in place of ????
SGO
 
in any empty cell in the spreadsheet type

=ISNUMBER(C5*D5)

you will get either true or false
I am not using vba.
 
=IF(ISNUMBER(A3),"Got Number",IF(ISERROR(A3),"Got Error","You Got
Neither"))
 

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