+ Reply to Thread
Results 1 to 15 of 15

EXCEL 2007 help with building quote sheet

  1. #1
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    EXCEL 2007 help with building quote sheet

    I am building a document for the company I work for to assist with getting customers quotes quicker. I have several things though that I have never done before that I need to figure out and would appreciate any help as I have been tasked with this job regardless of my knowledge.

    1.) I need to have a drop down box with part names that when selected will pop up a price in a separate cell. I have the drop down box created using "Data Validation">List with the Source being a column of cells on worksheet 2. It's the second half of this I am struggling with. I had used an IF statement for one option that only had 3 variables with two of them being the same price. This worked for this situation but won't work to my knowledge on 3+ variables with 3+ prices. The formula I used was (primary distribution is the name of the grouping:

    =IF(A14="primary distribution","$1,000","$750")


    The second thing I need to be able to do is have a 4x3 table with the following headers:

    Qty.
    Part Number & Description
    Single Unit Cost
    Extended Cost

    The quantity can be <blank>,1, or 2 but the sum of the two rows can not exceed 2.

    the part number & description is a drop down with 3+ variables.

    the cost will be filled in automatically based on the single unit cost from the part number & description column.

    the extended cost will be filled in automatically based on quantity x single unit cost




    Thanks in advance for any help or direction with this as I am pretty lost. If something is not clear let me know and I am happy to provide more details.
    Last edited by percussionman11; 10-09-2012 at 03:51 PM. Reason: mark SOLVED

  2. #2
    Forum Contributor BeachRock's Avatar
    Join Date
    11-01-2011
    Location
    Oregon, United States
    MS-Off Ver
    Excel 2016
    Posts
    403

    Re: EXCEL 2007 help with building quote sheet

    It sounds like an Index and Match function might work for you to pull the price of a part name selected. Look at the formula below. It would be placed into the cell that you want to return the price of a part based on the name selected in the Data Validation dropdown. Otherwise, it might help, and you would most likely get more people to provide help if you post an example of your workbook.

    =INDEX(RangeWherePriceIsLocated,MATCH(DataValidationCell,RangeWhereDataInValidationCellWillBeFound,0))
    -------------
    Tony

  3. #3
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: EXCEL 2007 help with building quote sheet

    Thanks for the reply. I have attached the spreadsheet with all the variables and actual values removed.

    Thanks!

    EDIT: I should also note, if there is a better way to do this I am happy to learn. However using the knowledge I do have this is the basic formatting I have so far. It is not complete and still needs to have several other aspects of it created after I figure these glitches out.
    Attached Files Attached Files

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,926

    Re: EXCEL 2007 help with building quote sheet

    perhaps if you added some examples of what your expected outcome is, and how you arrived at that, it would be easier to offer some suggestions to you?
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Forum Contributor BeachRock's Avatar
    Join Date
    11-01-2011
    Location
    Oregon, United States
    MS-Off Ver
    Excel 2016
    Posts
    403

    Re: EXCEL 2007 help with building quote sheet

    Hi percussionman11,

    I'm not sure if I understsand what you're trying to accomplish on the first part. Do the "primary Prices" on Sheet1 column C directly correlate to the Primary items listed in Sheet1 column B? In other words, if you pick "Option A" from the Special-Order Pricing sheet A14, are you expecting for Special-Order Pricing D14 to populate with $1000? And if "Option B" or "Option C" is selected then $750 will be returned in D14? Will there be more options with each having other pricing?

    Also, I think for the First, Second and main columns, you are wanting the dropdowns to operate based on selections from above and the drop down lists to change the selections available because of what has been selected above. Is that correct?
    Last edited by BeachRock; 10-08-2012 at 01:57 PM.

  6. #6
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: EXCEL 2007 help with building quote sheet

    Quote Originally Posted by FDibbins View Post
    perhaps if you added some examples of what your expected outcome is, and how you arrived at that, it would be easier to offer some suggestions to you?
    A14 will contain a type of unit (Example: Car, Truck, Motorcycle) with a base unit price in D14.

    A16 will contain an add-on with 4 options (Example: V4, V6, V8, V10 engine) with that add-on price being shown in D16.

    A18 will contain a second add-on with 5 options (Example: 15", 16", 17", 18", 19" rims) with that add-on price being shown in D18.

    A20/21 will contain a special set of parameters where the quantity of the two can't exceed 2 (can be 1+1, 2+0, 1+0, or 0+0). (Example: logos on front seats where first is driver and second is passenger seat: dragon+tiger, dragon+dragon, dragon+<no logo>, or <no logo>+<no logo>). This example isn't the best but it hopefully gives you the idea although there will be more than 2 options in the real scenario. Still working on a number however it will most likely be 5+.

    Eventually the D column will be added up to create a total price for what the product will cost so the consumer can see and if they are satisfied submit to my company.

    For example: D14+D16+D18+D20+D21=TOTAL COST

  7. #7
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: EXCEL 2007 help with building quote sheet

    Quote Originally Posted by BeachRock View Post
    Hi percussionman11,

    I'm not sure if I understsand what you're trying to accomplish on the first part. Do the "primary Prices" on Sheet1 column C directly correlate to the Primary items listed in Sheet1 column B? In other words, if you pick "Option A" from the Special-Order Pricing sheet A14, are you expecting for Special-Order Pricing D14 to populate with $1000? And if "Option B" or "Option C" is selected then $750 will be returned in D14? Will there be more options with each having other pricing?

    Also, I think for the First, Second and main columns, you are wanting the dropdowns to operate based on selections from above and the drop down lists to change the selections available because of what has been selected above. Is that correct?

    You are correct they do correlate. this option will not have other pricing. The others will.

    In answer to the second half of your question, yes. I want the drop down selection to change the price displayed in the D column based on the individual selection made in the A column.

    Per the example in the post I just made: The V4 will cost less than the other selections (ex. $500). The V6 will cost more (ex. $1,000). The V8 (ex. $2,000). The V10 (ex. $5,000).

    I want the price to match the selection.

  8. #8
    Forum Contributor BeachRock's Avatar
    Join Date
    11-01-2011
    Location
    Oregon, United States
    MS-Off Ver
    Excel 2016
    Posts
    403

    Re: EXCEL 2007 help with building quote sheet

    Percussionman - I have the primary, first and second column figured out but I need to know how the "Main" dropdown fits in. What is it used for? Is it separate from the three above it?

    I've attached a copy of what I have so-far. Let me know if the first 3 drop downs are what you needed or not.
    Attached Files Attached Files
    Last edited by BeachRock; 10-08-2012 at 05:58 PM.

  9. #9
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: EXCEL 2007 help with building quote sheet

    yes yes and yes! Thanks this is perfect so far!

    The main is exactly the same as the other ones. I know the header is messed up and I should have changed it but wasn't thinking about it at the time.

    The Primary Receptacles column is the one I hope is clear...We have a product with enough room for only a max of two options from that specific list.

    I have attached your version with a few additions that should help show what the final product should look like. I have also taken care of the total (sum) formula. Thanks again for your help as this is all way above what I know how to do and look forward to breaking it down later in reverse to learn what you did.
    Attached Files Attached Files

  10. #10
    Forum Contributor BeachRock's Avatar
    Join Date
    11-01-2011
    Location
    Oregon, United States
    MS-Off Ver
    Excel 2016
    Posts
    403

    Re: EXCEL 2007 help with building quote sheet

    Hi percussionman11,

    I think I have everything the way you want it. Please take a look at the attachment. It is now a macro enabled workbook. Let me know if you need help understanding how to add more items for each list on Sheet 2.
    Attached Files Attached Files

  11. #11
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: EXCEL 2007 help with building quote sheet

    Looks great except for one small thing...I'm noticing the bottom row of primary receptacles is not working for the product # & description. Also the first row is only showing 2 parts instead of the whole list.

    Thanks for all the help. I really like the reset feature and warning you created for this!

  12. #12
    Forum Contributor BeachRock's Avatar
    Join Date
    11-01-2011
    Location
    Oregon, United States
    MS-Off Ver
    Excel 2016
    Posts
    403

    Re: EXCEL 2007 help with building quote sheet

    Yeah, I wasn't sure how you needed the receptacles to be. I did them the same as the first, second and main drop downs as being dependant on the primary dropdown value. I may need more explanation of how the receptacles are supposed to work, how they related to the primary, etc.

    I fixed the 2nd receptacle dropdown. Sorry about that... See the attached.

    Glad you like the warning and reset features. I honestly couldn't think of any other way to do the warning or any other way to stop someone from entering more than the sum of 2 for them both.
    Attached Files Attached Files

  13. #13
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: EXCEL 2007 help with building quote sheet

    Thanks for fixing that! The only other thing is the drop down menus on the product #/description needs to allow the customer to select any of the listed parts in the O column.

    Pretty much we have a few options of parts that customers can pick between with a max of two. Imagine an outlet on a wall, you have two plugs and only two plugs but whatever you plug in is up to you. Could be an ipod and a laptop....could be two laptops....could be only one cell phone (leaving one open)...

    However the items have to come from the predetermined list and the customer can't just type it in.

    Hope this clarifies things.

    Again a huge thanks from me and my head as I now see I would have probably bashed my head through a wall before figuring this out.

  14. #14
    Forum Contributor BeachRock's Avatar
    Join Date
    11-01-2011
    Location
    Oregon, United States
    MS-Off Ver
    Excel 2016
    Posts
    403

    Re: EXCEL 2007 help with building quote sheet

    Ah, I get it. I made the change for that and it's reflected in the new attachment.

    I'm glad to be able to help. :-) Usually, I'm in here getting the help and it's not often I'm able to provide it myself. It was fun, in a geeky sort of way. The cascading menu system can be quite confusing. It took me a while to figure it out the first time I needed to use it. If you need help undertsanding what to do to add to, or subtract from each available list on sheet 2, let me know. You might want to lock both sheets and password protect them so changes can't be made that are unwanted. You might also want to create a copy as a backup of the original file.... just in case....

    Enjoy!

    P.S. - If this attachment is what you needed and you are satisfied with the outcome, please mark your post as solved.
    Attached Files Attached Files

  15. #15
    Registered User
    Join Date
    10-08-2012
    Location
    United States
    MS-Off Ver
    Excel 2007
    Posts
    8

    Re: EXCEL 2007 help with building quote sheet

    Thanks a ton, I was able to work backwards and figure out what you did and it makes a lot more sense now.

    I will mark this thread solved. Woot!

+ 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