Here's the deal. I have a list box that I want users to be able to select (multi select = Extended) rows to export to excel, but before that can happen I think I have to populate a report to use as a template.
I have a Shipper table and each table is made up of one or more Components from the Component table. The first column list box is populated with the Material_Code which is unique for each Shipper and links each Component to a single Shipper.
Do I even need the report template or can I just kick out each field to excel? Will using the report over complicate things or make it easier?
I know it will go something like
For intX = 0 to lst_view.List - 1
'if selected, kick it out to the report or excel
Next intX
Forgive me for I am a measly intern and do not have much experience in creating cross-application solutions such as this. Any help you can provide is much appreciated. TIA
I have a Shipper table and each table is made up of one or more Components from the Component table. The first column list box is populated with the Material_Code which is unique for each Shipper and links each Component to a single Shipper.
Do I even need the report template or can I just kick out each field to excel? Will using the report over complicate things or make it easier?
I know it will go something like
For intX = 0 to lst_view.List - 1
'if selected, kick it out to the report or excel
Next intX
Forgive me for I am a measly intern and do not have much experience in creating cross-application solutions such as this. Any help you can provide is much appreciated. TIA