+ Reply to Thread
Results 1 to 8 of 8

Using Excel for quotations and looking up descriptions and other information

  1. #1
    Registered User
    Join Date
    02-23-2010
    Location
    Yorkshire, England
    MS-Off Ver
    Excel 2003
    Posts
    4

    Using Excel for quotations and looking up descriptions and other information

    I'm wanting to use excel to prepare quotations. Nothing complicated, but I have approx 500 products in total which I will enter into an excel spreadsheet, but I only want to do it once.
    After that, I would like to only have to enter a product code and have excel 'bring in' all the rest of the details (description / specification / price etc).

    Is this possible and if so, where do I start and how do I set it up?

    Many thanks,


    Neil

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Using Excel for quotations

    Start by looking at Vlookup function in Excel Help.. should do what you want...
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    02-23-2010
    Location
    Yorkshire, England
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Using Excel for quotations

    That's really confused me!!

    I should mention I'm relatively inexperienced with Excel

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Using Excel for quotations

    So if say you entered all your raw data in Sheet1 with product code in column A, descriptions in column B, and other relevant info in adjacent columns....

    Now you enter a product code in Cell A1 of Sheet2, to get the description from Sheet1 for that code, use this formula in the cell you want to get the result in:

    =Vlookup(A1,Sheet1!$A$1:$D$100,2,FALSE)

    This will look for value you entered in A1 and find it in Sheet1, A1:A100 and then extract the info from the 2nd column in the table A1:D100, i.e. column B.

    To get next column of data, use same formula and change the 2 to a 3, etc...

    Make sure you encapsulate the full table in the second argument of the formula.

    If you still have difficulties...post a sample workbook removing confidential data....

  5. #5
    Registered User
    Join Date
    02-23-2010
    Location
    Yorkshire, England
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Using Excel for quotations and looking up descriptions and other information

    OK. I'm still struggling. I've attached the workbook as I have it. I want to be able to just enter a quantity and model number in the quotation page and let excel input the reset of the data.
    Attached Files Attached Files

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Using Excel for quotations and looking up descriptions and other information

    See attached...


    Note.. I put in sum fictitious prices to show how it works...

    I also made assumptions about your discount, nett and totals ... change as you see fit.
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    02-23-2010
    Location
    Yorkshire, England
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Using Excel for quotations and looking up descriptions and other information

    Nearly perfect. The only problem I have now is that each of the fields into which I have copied the formula displays #N/A until a model no. is entered for that row. I know is other excel commands I can use the =IF(SUM(B16)>0, (example) prefix to leave the field blank, but if I use it in this case, it displays 'FALSE'

    Can this be resolved?

    Thanks,

    Neil

  8. #8
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Using Excel for quotations and looking up descriptions and other information

    You can add a condition to check if you have entered a model #...

    =IF(C15="","",VLOOKUP($C15,'Price List'!$A:$D,4,FALSE))

    See attached...
    Attached Files Attached Files

+ 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