+ Reply to Thread
Results 1 to 5 of 5

How to Work out a price per Kilo.

Hybrid View

  1. #1
    Registered User
    Join Date
    04-19-2006
    Posts
    8

    How to Work out a price per Kilo.

    Hi
    I hope you can help me. I have weight bands to calculate for delivery purposes and could do with your help.

    Less than 20 Kg the charge is £6.00

    Over 20 Kg and under 100 Kg £6.00 plus £00.20 per Kg

    Over 100 Kg £6.00 plus £00.22 per Kg.

    All my figures are in column A

    Any help with a formula would be appreciated.
    Last edited by Jordan; 09-27-2010 at 12:54 PM. Reason: Thank so very much

  2. #2
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: How to Work out a price per Kilo.

    =if(a1<=20,6,if(and(a1>20,a1<=100),6+(a1-20)*0.2,6+(a1-20)*0.22))
    Palmetto

    Do you know . . . ?

    You can leave feedback and add to the reputation of all who contributed a helpful response to your solution by clicking the star icon located at the left in one of their post in this thread.

  3. #3
    Forum Expert Domski's Avatar
    Join Date
    12-14-2009
    Location
    A galaxy far, far away
    MS-Off Ver
    Darth Office 2010
    Posts
    3,950

    Re: How to Work out a price per Kilo.

    You could use a lookup table. See attached example.

    Dom
    Attached Files Attached Files
    "May the fleas of a thousand camels infest the crotch of the person who screws up your day and may their arms be too short to scratch..."

    Use code tags when posting your VBA code: [code] Your code here [/code]

    Remember, saying thanks only takes a second or two. Click the little star to give some Rep if you think an answer deserves it.

  4. #4
    Registered User
    Join Date
    04-19-2006
    Posts
    8

    Re: How to Work out a price per Kilo.

    Thank you so very much

  5. #5
    Forum Expert Palmetto's Avatar
    Join Date
    04-04-2007
    Location
    South Eastern, USA
    MS-Off Ver
    XP, 2007, 2010
    Posts
    3,978

    Re: How to Work out a price per Kilo.

    Another variation:
    =6+(A1-20)*LOOKUP(A1,{0,20,21,101},{0,0,0.2,0.22})

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1