Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Suppose, i have 3 incentive slabs
No.of sale incentive slab 1-10 no.of sale*8 11-20 no.of sale*10 21 and above no. of sale*15 What formula i have to insert in the incentive column , so i will get the incentive of every salesman if i fill only the no. of sale in the column left to incentive slab column ?If this works i will be able to save a lot of time and energy so please help and explain in details with examples. -- With Thanks Regards Rajesh Chandra |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Assuming your data starts in Row 2 (with Row 1 being a header row) and
further assuming Column A is your "No. of Sales" column and Column B is your "Incentive Slab" column, put this formula in B2 and copy it down as far as you want... =IF(A2="","",IF(A2<=10,8*A2,IF(A2<=20,10*A2,15*A2) )) Rick "Rajesh Chandra" wrote in message ... Suppose, i have 3 incentive slabs No.of sale incentive slab 1-10 no.of sale*8 11-20 no.of sale*10 21 and above no. of sale*15 What formula i have to insert in the incentive column , so i will get the incentive of every salesman if i fill only the no. of sale in the column left to incentive slab column ?If this works i will be able to save a lot of time and energy so please help and explain in details with examples. -- With Thanks Regards Rajesh Chandra |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Just another option:
=MAX(8*A1,10*(A1-2),15*(A1-8)) -- HTH :) Dana DeLouis "Rajesh Chandra" wrote in message ... Suppose, i have 3 incentive slabs No.of sale incentive slab 1-10 no.of sale*8 11-20 no.of sale*10 21 and above no. of sale*15 What formula i have to insert in the incentive column , so i will get the incentive of every salesman if i fill only the no. of sale in the column left to incentive slab column ?If this works i will be able to save a lot of time and energy so please help and explain in details with examples. -- With Thanks Regards Rajesh Chandra |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Hi
=A2*(10-(A2<11)+(A220)) -- Arvi Laanemets ( My real mail address: arvi.laanemets<attarkon.ee ) "Rajesh Chandra" wrote in message ... Suppose, i have 3 incentive slabs No.of sale incentive slab 1-10 no.of sale*8 11-20 no.of sale*10 21 and above no. of sale*15 What formula i have to insert in the incentive column , so i will get the incentive of every salesman if i fill only the no. of sale in the column left to incentive slab column ?If this works i will be able to save a lot of time and energy so please help and explain in details with examples. -- With Thanks Regards Rajesh Chandra |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
A correction
=A2*(10-2*(A2<11)+5*(A220)) Arvi Laanemets |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula/functions for average and if functions | Excel Worksheet Functions | |||
efficiency: database functions vs. math functions vs. array formula | Excel Discussion (Misc queries) | |||
Looking for a site with functions that substitute the ATP functions | Excel Worksheet Functions | |||
User-defined functions created in Excel 2000 fail in Excel 2003 | Excel Discussion (Misc queries) | |||
Nesting functions in the functions dialog box | Excel Worksheet Functions |