#1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sal
 
Posts: n/a
Default Nested Ifs

Hello
I think I need to compile a nested if. I need to set a delivery charge for
anyone who meets a certain criteria such as:
Delivery free for orders over £200
£15 for orders between £1 and £99
£10 for orders between £100 and £199.
I tried
=IF(F4200,0,IF(F4<=100,15,IF(F4101or<199,10)))
I think that I need help!!!!!!!
Over to anybody.
Thanks S


  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Ardus Petus
 
Posts: n/a
Default Nested Ifs

=IF(F4<100,15,IF(F4<200,10,0))

HTH
--
AP

"Sal" a crit dans le message de
...
Hello
I think I need to compile a nested if. I need to set a delivery charge

for
anyone who meets a certain criteria such as:
Delivery free for orders over 200
15 for orders between 1 and 99
10 for orders between 100 and 199.
I tried
=IF(F4200,0,IF(F4<=100,15,IF(F4101or<199,10)))
I think that I need help!!!!!!!
Over to anybody.
Thanks S




  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Nick Hodge
 
Posts: n/a
Default Nested Ifs

Sal

Try this

=IF(A1="","",IF(A1<100,15,IF(A1<200,10,0)))

The first clause leaves the cell blank if there is no entry in the cell (A1
in the example)

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
www.nickhodge.co.uk
HIS


"Sal" wrote in message
...
Hello
I think I need to compile a nested if. I need to set a delivery charge
for
anyone who meets a certain criteria such as:
Delivery free for orders over 200
15 for orders between 1 and 99
10 for orders between 100 and 199.
I tried
=IF(F4200,0,IF(F4<=100,15,IF(F4101or<199,10)))
I think that I need help!!!!!!!
Over to anybody.
Thanks S




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Aladin Akyurek
 
Posts: n/a
Default Nested Ifs

=LOOKUP(F4,{0,1,100,200},{"",15,10,0})

Sal wrote:
Hello
I think I need to compile a nested if. I need to set a delivery charge for
anyone who meets a certain criteria such as:
Delivery free for orders over £200
£15 for orders between £1 and £99
£10 for orders between £100 and £199.
I tried
=IF(F4200,0,IF(F4<=100,15,IF(F4101or<199,10)))
I think that I need help!!!!!!!
Over to anybody.
Thanks S


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sal
 
Posts: n/a
Default Nested Ifs

Gems as usual - thank you.
S

"Ardus Petus" wrote:

=IF(F4<100,15,IF(F4<200,10,0))

HTH
--
AP

"Sal" a écrit dans le message de
...
Hello
I think I need to compile a nested if. I need to set a delivery charge

for
anyone who meets a certain criteria such as:
Delivery free for orders over £200
£15 for orders between £1 and £99
£10 for orders between £100 and £199.
I tried
=IF(F4200,0,IF(F4<=100,15,IF(F4101or<199,10)))
I think that I need help!!!!!!!
Over to anybody.
Thanks S







  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Sal
 
Posts: n/a
Default Nested Ifs

Thank you so much.
S

"Nick Hodge" wrote:

Sal

Try this

=IF(A1="","",IF(A1<100,15,IF(A1<200,10,0)))

The first clause leaves the cell blank if there is no entry in the cell (A1
in the example)

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
www.nickhodge.co.uk
HIS


"Sal" wrote in message
...
Hello
I think I need to compile a nested if. I need to set a delivery charge
for
anyone who meets a certain criteria such as:
Delivery free for orders over £200
£15 for orders between £1 and £99
£10 for orders between £100 and £199.
I tried
=IF(F4200,0,IF(F4<=100,15,IF(F4101or<199,10)))
I think that I need help!!!!!!!
Over to anybody.
Thanks S





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 IF Function and VLookup Alternatives robert.holmes Excel Worksheet Functions 1 December 12th 05 10:28 PM
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 3 January 12th 05 06:02 PM


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