Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
civilized_engr
 
Posts: n/a
Default using logical functions

in excel i want to increase the figures by 10, 20, & 30 percent respectively
for the following ranges: below 10000 = 10%, between 10000 & 40000 = 20%,
above 40000 = 30%. How do I create this logic in the if statement. I shall
aprreicate your help
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
macropod
 
Posts: n/a
Default using logical functions

Hi civilized_engr,

=IF(A1<10000,A1*1.1,IF(A1<40000,A1*1.2,A1*1.3))

Now all you have to do is to stop building targets...

Cheers

--
macropod
[MVP - Microsoft Word]


"civilized_engr" wrote in message
...
in excel i want to increase the figures by 10, 20, & 30 percent

respectively
for the following ranges: below 10000 = 10%, between 10000 & 40000 = 20%,
above 40000 = 30%. How do I create this logic in the if statement. I shall
aprreicate your help



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Arvi Laanemets
 
Posts: n/a
Default using logical functions

Hi

For a figure in cell A1:
=(1.1+(A110000)*0.1+(A140000)*0.1)*A1

Arvi Laanemets



"civilized_engr" wrote in message
...
in excel i want to increase the figures by 10, 20, & 30 percent

respectively
for the following ranges: below 10000 = 10%, between 10000 & 40000 = 20%,
above 40000 = 30%. How do I create this logic in the if statement. I shall
aprreicate your help



  #4   Report Post  
Junior Member
 
Posts: 3
Default

Quote:
Originally Posted by civilized_engr
in excel i want to increase the figures by 10, 20, & 30 percent respectively
for the following ranges: below 10000 = 10%, between 10000 & 40000 = 20%,
above 40000 = 30%. How do I create this logic in the if statement. I shall
aprreicate your help
Try this: =IF(A6<10000,A6*1.1,IF(AND(A6=10000,A6<=40000),A6 *1.2,IF(A640000,A6*1.3)))
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
Logical functions to calculate points stellarblue11 Excel Worksheet Functions 6 May 25th 06 04:05 PM
LOGICAL FUNCTIONS WITH MULTIPLE VARIABLES luiss Excel Worksheet Functions 3 November 18th 05 04:08 PM
logical functions wiz546 Excel Worksheet Functions 1 February 1st 05 09:42 AM
logical functions wiz546 Excel Worksheet Functions 1 February 1st 05 03:02 AM
using logical functions as criteria with the SUMIF function pfdubz Excel Worksheet Functions 6 December 1st 04 07:40 PM


All times are GMT +1. The time now is 10:00 AM.

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"