if function

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

Guest

Hi everybody
I am having difficulty to find out a formula.
I know it is simple but I tried everything and did not work.

The situation is here: if a number is at least 10 and less then 100.........
How can I create if function for this
Please help
Thank you
 
Is this what you're looking for?

IF(AND(A1>=10,A1<100),Action if TRUE,Action if FALSE)

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================
 
=IF(AND(A1>=10, A1<100), TRUE, FALSE)

Where cell A1 contains the number you are testing. Replace TRUE and FALSE
with whatever you want the formula to do in the event the condition is met or
not met.
 

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


Back
Top