Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Multiple IF functions

I like to enter a multiple IF funcution formula that looks like this:
=if(a10<5,x1+1,if(a105<10,x1+2,if(a1010<20,x1+3) ))
Always getting an FALSE message what am I doing wrong?

--
Harry S
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,420
Default Multiple IF functions

=IF(A10<5,x1+1,IF(AND(A105,A10<10),X1+2,IF(AND(A1 010,A10<20),X1+3)))


--
__________________________________
HTH

Bob

"Harry S" wrote in message
...
I like to enter a multiple IF funcution formula that looks like this:
=if(a10<5,x1+1,if(a105<10,x1+2,if(a1010<20,x1+3) ))
Always getting an FALSE message what am I doing wrong?

--
Harry S



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Multiple IF functions

Do it like this:

=if(a10<5,x1+1,if(a10<10,x1+2,if(a10<20,x1+3,"out of range")))

You have already tested for A10 being less than 5 when you get to the
second IF, so you don't need to test it for that condition again.
Similarly for when you get to the third IF.

Hope this helps.

Pete

On Sep 24, 3:39*pm, Harry S wrote:
I like to enter a multiple IF funcution formula that looks like this:
=if(a10<5,x1+1,if(a105<10,x1+2,if(a1010<20,x1+3) ))
Always getting an FALSE message what am I doing wrong?

--
Harry S


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 1
Default Multiple IF functions


Good morning Pete_UK
I, Coreen, am needing your help. Similar to the previous you helped with,
thus how would you write a COUNTIF function from one worksheet into another
worksheet of the same workbook?
Thank you for your time and kindness,
Coreen_NZ

"Pete_UK" wrote:

Do it like this:

=if(a10<5,x1+1,if(a10<10,x1+2,if(a10<20,x1+3,"out of range")))

You have already tested for A10 being less than 5 when you get to the
second IF, so you don't need to test it for that condition again.
Similarly for when you get to the third IF.

Hope this helps.

Pete

On Sep 24, 3:39 pm, Harry S wrote:
I like to enter a multiple IF funcution formula that looks like this:
=if(a10<5,x1+1,if(a105<10,x1+2,if(a1010<20,x1+3) ))
Always getting an FALSE message what am I doing wrong?

--
Harry S



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 8,856
Default Multiple IF functions

Well, suppose you wanted a count in Sheet2 of the numbers in column A
of Sheet1 which are greater than 5 - you could do that like this:

=COUNTIF(Sheet1!A:A,"5")

This is just an example - if you want a more specific answer then you
will need to supply some more details of what it is that you want to
do.

Hope this helps.

Pete

On Sep 24, 7:58*pm, Coreen M. Harris, New Zealand <Coreen M. Harris,
New wrote:
Good morning Pete_UK
I, Coreen, am needing your help. Similar to the previous you helped with,
thus how would you write a COUNTIF function from one worksheet into another
worksheet of the same workbook?
Thank you for your time and kindness,
Coreen_NZ



"Pete_UK" wrote:
Do it like this:


=if(a10<5,x1+1,if(a10<10,x1+2,if(a10<20,x1+3,"out of range")))


You have already tested for A10 being less than 5 when you get to the
second IF, so you don't need to test it for that condition again.
Similarly for when you get to the third IF.


Hope this helps.


Pete


On Sep 24, 3:39 pm, Harry S wrote:
I like to enter a multiple IF funcution formula that looks like this:
=if(a10<5,x1+1,if(a105<10,x1+2,if(a1010<20,x1+3) ))
Always getting an FALSE message what am I doing wrong?


--
Harry S- Hide quoted text -


- Show quoted text -




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Multiple functions, conditional functions HeatherBelle Excel Worksheet Functions 7 October 17th 08 03:57 PM
Index & Match functions - multiple criteria and multiple results [email protected] Excel Worksheet Functions 4 May 2nd 07 03:13 AM
Multiple IF functions mpenkala Excel Worksheet Functions 2 April 24th 07 09:10 PM
How do I use multiple functions? Dan L. Excel Worksheet Functions 3 December 13th 05 10:09 AM
Multiple IF functions questionsforms Excel Worksheet Functions 2 October 30th 05 03:12 AM


All times are GMT +1. The time now is 03:14 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"