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

I need to display the result of multiple IFs
if (J110<25) "1", if (j125<50), "2", if (j150), "3"-
Driving me mad...anybody help please?
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 7,247
Default Multiple IFs

Try
=IF(AND(J110,J1<25),"1",IF(AND(J125,J1<50),"2",I F(J150,"3"))

I

"WannaM" wrote in message
...
I need to display the result of multiple IFs
if (J110<25) "1", if (j125<50), "2", if (j150), "3"-
Driving me mad...anybody help please?



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 695
Default Multiple IFs

=IF(AND(J110;J1<25);1;IF(AND(J125;J1<50);2;IF(J1 50;3;"")))



"WannaM" skrev:

I need to display the result of multiple IFs
if (J110<25) "1", if (j125<50), "2", if (j150), "3"-
Driving me mad...anybody help please?

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

ups
=IF(AND(J110,J1<25),1,IF(AND(J125,J1<50),2,IF(J1 50;3,"")))



"excelent" skrev:

=IF(AND(J110;J1<25);1;IF(AND(J125;J1<50);2;IF(J1 50;3;"")))



"WannaM" skrev:

I need to display the result of multiple IFs
if (J110<25) "1", if (j125<50), "2", if (j150), "3"-
Driving me mad...anybody help please?

  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 2,886
Default Multiple IFs

Hi

In addition to the solutions you have, it could be achieved without IF
statements, provided you can accept 0 as the result if the value in A1
does not match any of the criteria

=(INT((A1-1)/25)+1)-(A1<10)

--
Regards

Roger Govier


"WannaM" wrote in message
...
I need to display the result of multiple IFs
if (J110<25) "1", if (j125<50), "2", if (j150), "3"-
Driving me mad...anybody help please?



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
link multiple cells to multiple cells jpoltor Excel Discussion (Misc queries) 2 March 25th 06 08:59 AM
Move multiple rows of data that are not sequential Mel Excel Discussion (Misc queries) 1 January 20th 06 06:33 AM
External Links and Multiple Instances JMD Excel Discussion (Misc queries) 3 January 3rd 06 09:21 PM
AHHHH-Get Data from Multiple Excel workbooks JAA149 Excel Discussion (Misc queries) 5 October 30th 05 05:19 PM
view multiple files in multiple windows on multiple screens. tcom Excel Discussion (Misc queries) 7 September 15th 05 09:35 PM


All times are GMT +1. The time now is 01:46 PM.

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

About Us

"It's about Microsoft Excel"