I'm a newbie and way in over my head, I've tried to extract selectively with a filter to no avail.....so lets try VBA ?
I have two worksheets "Data Collector" and "Quotation".
Data Collector is as follows:
A D E
Product Code Description Qty
A0001 Toy 0
A0002 Tank 0
A0003 Car 3
A0004 Bus 5
A0005 Light 0
A0006 Ball 3
.
.
.
A0020
Quotation is as follows:
B C G
Product Code Description Qty
.
.
.
.
20 lines (max)
What I want to do is press a button and Extract all the lines of data from "Data Collector" ONLY when the Qty >0.
Such that after pressing the button, "quotation" table is populated as follows:
B C G
Product Code Description Qty
A0003 Car 3
A0004 Bus 5
A0006 Ball 3
I suppose that everytime I pressed the button I should clear the worksheet (Quotation Table), before re-populating.
I've been trying to find a why to do it on the fly, but no luck.....so doing it as a "button" is the next best thing.
Any help is hugely appreciated.
Leon
I have two worksheets "Data Collector" and "Quotation".
Data Collector is as follows:
A D E
Product Code Description Qty
A0001 Toy 0
A0002 Tank 0
A0003 Car 3
A0004 Bus 5
A0005 Light 0
A0006 Ball 3
.
.
.
A0020
Quotation is as follows:
B C G
Product Code Description Qty
.
.
.
.
20 lines (max)
What I want to do is press a button and Extract all the lines of data from "Data Collector" ONLY when the Qty >0.
Such that after pressing the button, "quotation" table is populated as follows:
B C G
Product Code Description Qty
A0003 Car 3
A0004 Bus 5
A0006 Ball 3
I suppose that everytime I pressed the button I should clear the worksheet (Quotation Table), before re-populating.
I've been trying to find a why to do it on the fly, but no luck.....so doing it as a "button" is the next best thing.
Any help is hugely appreciated.
Leon