+ Reply to Thread
Results 1 to 3 of 3

quote sheet help please

  1. #1
    Registered User
    Join Date
    09-19-2003
    Posts
    8

    quote sheet help please

    I need your help again please folks,

    I have a basic program to help doing quotes for our small business. Basically, I would like to streamline the program, and also be able to print only the parts that are selected for a particular job on Sheet#2.

    The program has several different catagories, then all the options are listed in each category. The user selects which options are required, and the program totals everything up. BUT... I would like to be able to display each of the parts selected on a separate worksheet so that I can easily print off all of the options that we require for the quote. This makes ordering and final billing alot easier for us.

    Basically, what I "think" needs to happen is some sort of sorting formula in place on Sheet#2 that takes each item from Sheet#1 that has a number other than "0" in the quantity column, and add it to the printable worksheet, under the proper category.

    I have included a simplified version of the quote sheet, please note on sheet 2 the stucture is in place, but no formula to add in the items if they are selected on sheet 1.

    I hope this makes sense, please ask if I have not been clear enough,

    thanks,

    RB
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    06-18-2004
    Location
    Canada
    MS-Off Ver
    Office 2016
    Posts
    1,474
    Try the following...

    A6, copied down to A8 and over to Column D:

    =IF(ROW()-ROW(A$6)+1<=COUNTIF(Sheet1!$A$5:$A$7,">0"),INDEX(Sheet1!A$5:A$7,SMALL(IF(Sheet1!$A$5:$A$7>0,ROW(Sheet1!$A$5:$A$7)-ROW(Sheet1!$A$5)+1),ROWS(Sheet2!A$6:A6))),"")

    A11, copied down to A13 and over to Column D:

    =IF(ROW()-ROW(A$11)+1<=COUNTIF(Sheet1!$A$10:$A$12,">0"),INDEX(Sheet1!A$10:A$12,SMALL(IF(Sheet1!$A$10:$A$12>0,ROW(Sheet1!$A$10:$A$12)-ROW(Sheet1!$A$10)+1),ROWS(Sheet2!A$11:A11))),"")

    A16, copied down to A18 and over to Column D:

    =IF(ROW()-ROW(A$16)+1<=COUNTIF(Sheet1!$A$15:$A$17,">0"),INDEX(Sheet1!A$15:A$17,SMALL(IF(Sheet1!$A$15:$A$17>0,ROW(Sheet1!$A$15:$A$17)-ROW(Sheet1!$A$15)+1),ROWS(Sheet2!A$16:A16))),"")

    These formulas need to be confirmed with CONTROL+SHIFT+ENTER, not just ENTER.

    Hope this helps!

  3. #3
    Registered User
    Join Date
    09-19-2003
    Posts
    8
    Thank you very much Domenic, I just checked back with the site and saw your excellent reply.
    RB

+ 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