#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Martha
 
Posts: n/a
Default NESTED

Hi, I set up 6 sets of if statements and give each a "defined name" to
combine them into one, like this:
=sumif(velocis,velocis2,velocis3,velocis4,velocis5 ,velocis6,0)but it is not
working. What I trying to do is to set up a formula where if a pc is to be up
24 hours and the user enters and outage of 30 minutes, then the if statement
will get back the answer based on a table I lay out. The table is in two
rows. 1st row begins with the 1440 minutes, then 1439.86 and son on until it
gets down to 14.40 minutes. Then the bottom row begins with 100%, then 99.99%
and so on until it gets to 1%. Then I am using the If statement to look up
at the table (the two rows) to get back the answer according to what the end
user enters. Any help would be greatly appreciated. If I can do this in a
simpler way please advice. Thanks Martha

=IF(D23=O1,O3,IF(D23=P1,P3,IF(D23=Q1,Q3,IF(D23 =R1,R3,IF(=IF(D23=V1,V3,IF(D23=W1,W3,IF(D23=X1, X3,IF(D23=Y1,Y3,IF(D23=Z1,Z3,IF(D23=AA1,AA3,0)) ))))D23=S1,S3,IF(D23=T1,T3,IF(D23=U1,U3,0)))))) )=IF(D23=AB1,AB3,IF(D23=AC1,AC3,IF(D23=AD1,AD3, IF(D23=AE1,AE3,IF(D23=AF1,AF3,IF(D23=AG1,AG3,0) )))))=IF(D23=AH1,AH3,IF(D23=AI1,AI3,IF(D23=AJ1, AJ3,IF(D23=AK1,AK3,IF(D23=AL1,AL3,IF(D23=AM1,AM 3,0))))))=IF(D23=AN1,AN3,IF(D23=AO1,AO3,IF(D23= AP1,AP3,IF(D23=AQ1,AQ3,IF(D23=AR1,AR3,IF(D23=AS 1,AS3,0))))))=IF(D23=AT1,AT3,IF(D23=AU1,AU3,IF(D 23=AV1,AV3,IF(D23=AW1,AW3,IF(D23=AX1,AX3,IF(D23 =AY1,AY3,IF(D23=AZ1,AZ3,IF(D23=BA1,BA3,0))))))) )

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
davesexcel
 
Posts: n/a
Default NESTED


http://excel-vba.com/v-statements.htm

Use this example as a macro, if then elseif


--
davesexcel
------------------------------------------------------------------------
davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
View this thread: http://www.excelforum.com/showthread...hreadid=520409

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Max
 
Posts: n/a
Default NESTED

A simple way is to flip / reverse the reference table in O1:BA3 using Data
Sort Options Sort left to right OK, Sort by Row1 Ascending OK

Then we could use either:

=HLOOKUP(D23,O1:BA3,3)

or

=INDEX(O3:BA3,MATCH(D23,O1:BA1,1))
--
Max
Singapore
http://savefile.com/projects/236895
xdemechanik
---
"Martha" wrote in message
...
Hi, I set up 6 sets of if statements and give each a "defined name" to
combine them into one, like this:
=sumif(velocis,velocis2,velocis3,velocis4,velocis5 ,velocis6,0)but it is

not
working. What I trying to do is to set up a formula where if a pc is to be

up
24 hours and the user enters and outage of 30 minutes, then the if

statement
will get back the answer based on a table I lay out. The table is in two
rows. 1st row begins with the 1440 minutes, then 1439.86 and son on until

it
gets down to 14.40 minutes. Then the bottom row begins with 100%, then

99.99%
and so on until it gets to 1%. Then I am using the If statement to look

up
at the table (the two rows) to get back the answer according to what the

end
user enters. Any help would be greatly appreciated. If I can do this in a
simpler way please advice. Thanks Martha


=IF(D23=O1,O3,IF(D23=P1,P3,IF(D23=Q1,Q3,IF(D23 =R1,R3,IF(=IF(D23=V1,V3,I
F(D23=W1,W3,IF(D23=X1,X3,IF(D23=Y1,Y3,IF(D23=Z 1,Z3,IF(D23=AA1,AA3,0))))
))D23=S1,S3,IF(D23=T1,T3,IF(D23=U1,U3,0)))))))= IF(D23=AB1,AB3,IF(D23=AC
1,AC3,IF(D23=AD1,AD3,IF(D23=AE1,AE3,IF(D23=AF1, AF3,IF(D23=AG1,AG3,0)))))
)=IF(D23=AH1,AH3,IF(D23=AI1,AI3,IF(D23=AJ1,AJ3, IF(D23=AK1,AK3,IF(D23=AL
1,AL3,IF(D23=AM1,AM3,0))))))=IF(D23=AN1,AN3,IF(D 23=AO1,AO3,IF(D23=AP1,AP
3,IF(D23=AQ1,AQ3,IF(D23=AR1,AR3,IF(D23=AS1,AS3, 0))))))=IF(D23=AT1,AT3,IF
(D23=AU1,AU3,IF(D23=AV1,AV3,IF(D23=AW1,AW3,IF(D 23=AX1,AX3,IF(D23=AY1,AY
3,IF(D23=AZ1,AZ3,IF(D23=BA1,BA3,0))))))))



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
Nested Subtotals in Excel 2002 KG Excel Discussion (Misc queries) 2 September 10th 05 11:51 AM
Why are my nested sub-totals are displaying incorrectly? chiefdean13 Excel Discussion (Misc queries) 1 July 20th 05 05:45 AM
Nested IF statements John Simons Excel Worksheet Functions 14 February 16th 05 06:17 AM
€śUse of more then 7 nested if statement€ť Faisal Yameen Excel Worksheet Functions 2 January 12th 05 04:20 PM
7+ nested if statement? Turi Excel Worksheet Functions 3 December 20th 04 07:55 PM


All times are GMT +1. The time now is 11:04 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"