+ Reply to Thread
Results 1 to 6 of 6

A few questions (rank and charges)

  1. #1
    Registered User
    Join Date
    10-07-2006
    Posts
    14

    A few questions (rank and charges)

    I need help with this. I need to find the best customer, by who has the most expensive order. (there are only five customers) and we have to rank it by the persons name.

    Im not sure how to do this. I only know how to rank things by numbers say =rank(a3,a3:a7,1)

    Question #2 how to I work with a number of different charges? say, for example, It cost $3 for each added letter and $5 for each added iron-on, in one cell, how would I calc. both of them? The # of letter and the # of iron ons have there own cell too. B cell is the letters, C cell is the iron ons and F cell is the total + the costs. I was thinking

    =add(B3*3+C3*5) but i dotn know how to find the total

    Question #3

    How to add a discount. Say, If you got both a letter and an iron on (one of each or more) then you got 10% off your order. Do you use countif?
    Last edited by zwgator; 10-07-2006 at 10:05 AM.

  2. #2
    Forum Contributor Stuie's Avatar
    Join Date
    09-17-2006
    Location
    Suffolk, UK
    MS-Off Ver
    Excel 2003/2007
    Posts
    432
    did u want to write a button or just put formulas into a cell?? coz it wud be dead easy to make this all happen off a click of a button

  3. #3
    Registered User
    Join Date
    10-07-2006
    Posts
    14
    It doesn't matter, i dont think

  4. #4
    Registered User
    Join Date
    10-07-2006
    Posts
    14
    also, i get an #value error when I try this =SUM(B4*3+C3*5) where both B4 and C3 are equal to zero....i want it to equal 0 and not get an error

  5. #5
    Forum Contributor
    Join Date
    03-14-2006
    Location
    Pakistan
    Posts
    1,791

    Lightbulb

    Quote Originally Posted by zwgator
    I need help with this. I need to find the best customer, by who has the most expensive order. (there are only five customers) and we have to rank it by the persons name.

    Im not sure how to do this. I only know how to rank things by numbers say =rank(a3,a3:a7,1)

    Question #2 how to I work with a number of different charges? say, for example, It cost $3 for each added letter and $5 for each added iron-on, in one cell, how would I calc. both of them? The # of letter and the # of iron ons have there own cell too. B cell is the letters, C cell is the iron ons and F cell is the total + the costs. I was thinking

    =add(B3*3+C3*5) but i dotn know how to find the total

    Question #3

    How to add a discount. Say, If you got both a letter and an iron on (one of each or more) then you got 10% off your order. Do you use countif?
    Ans#1

    I suppose you have Customer names in col A and Order in col B and data starts from row1.

    use following function to return Customer name which has highest order

    =INDEX(A1:A5,MATCH(LARGE(B1:B5,1),B1:B5,0),0)

    Ans#2

    use simply
    =B3*3+C3*5

    Ans#3

    if you have original price in col D and want to calculate discounted price in col E
    use in col E
    =D1-D1*0.1

    Regards.
    Last edited by starguy; 10-09-2006 at 07:59 AM.

  6. #6
    Registered User
    Join Date
    10-07-2006
    Posts
    14
    Ok this is great! One more thing

    I need to do a goal seek on this. I have a total, the amount of the discount (10%) and the total cost after the discount. Now, the discount for all five people is over $90 and I need to find the discount % rate if I wanted the total amount of the discounts to equal $40

    How would I use goal seek to find this? Thanks

+ 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