+ Reply to Thread
Results 1 to 4 of 4

How to calculate different slab rates for different weights

Hybrid View

  1. #1
    Registered User
    Join Date
    01-01-2016
    Location
    Mumbai, INDIA
    MS-Off Ver
    Microsoft Offce 2007 SP3
    Posts
    2

    Question How to calculate different slab rates for different weights

    I have to calculate Weight Handling Fees based on the following criteria:

    Each 500 gram Up to 2 Kg @ 45/- Required formula result as
    for 1.75 Kgs 180/-
    for 1.10 Kgs 135/-
    for 0.90 Kgs 90/-

    Every additional 500 gram @ 30/- Required formula result as
    for 2.25 Kgs 210/-
    for 2.60 Kgs 240/-

  2. #2
    Forum Guru Pete_UK's Avatar
    Join Date
    12-31-2011
    Location
    Warrington, England
    MS-Off Ver
    Office 2019 (still learning)
    Posts
    25,417

    Re: How to calculate different slab rates for different weights

    Assuming the weight is in A2 in grams (so 1.2 Kgs should be entered as 1200), then you can have this formula in B2:

    =ROUNDUP(MIN(A2,2000)/500,0)*45 + ROUNDUP(MAX(0,A2-2000)/500,0)*30

    Hope this helps.

    Pete

  3. #3
    Forum Guru
    Join Date
    08-28-2014
    Location
    USA
    MS-Off Ver
    Excel 365 version 2501
    Posts
    18,933

    Re: How to calculate different slab rates for different weights

    Try the following formula:
    =IF(A2<=2,ROUNDUP(A2/0.5,0)*45,180+ROUNDUP((A2-2)/0.5,)*30)
    Here it is applied to a file where the weight is entered in A2 and the fee is reported in B2:
    Slab Wieghts.xlsx
    Let me know if you have any questions.
    Consider taking the time to add to the reputation of everybody that has taken the time to respond to your query.

  4. #4
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    30,811

    Re: How to calculate different slab rates for different weights

    Removed by JT
    Last edited by JohnTopley; 01-01-2016 at 01:33 PM. Reason: Answers already supplied!

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Apply Slab Rates????
    By ndmalam in forum Excel Formulas & Functions
    Replies: 11
    Last Post: 06-10-2020, 09:37 AM
  2. Need a formula which can calculate amount on Slab basis
    By Akshaydivecha in forum Excel Formulas & Functions
    Replies: 33
    Last Post: 10-21-2015, 02:22 AM
  3. [SOLVED] VBA to calculate Product weights
    By elgato74 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 01-24-2014, 06:31 PM
  4. How to calculate transport cost from distance & weight slab
    By linardni in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-18-2013, 12:02 PM
  5. Computing amount based on slab rates
    By anandvh in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-28-2012, 08:21 PM
  6. Macro To Calculate Weights
    By Cza102282 in forum Excel General
    Replies: 5
    Last Post: 07-07-2009, 12:21 PM
  7. how do i calculate pay from given hours and pay rates?
    By ejm014 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 05-27-2005, 09:05 AM

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