How can I take two access querys and extract to a CSV with payment header and detail information: Query1 contains the total payment amount for all invoices: [recordid] [Check#] [totalinvAmount] [vendor#] Query2 contains the detail Invoice information: [recordid] [invoice#] [invamount] [Vendor#]
Output CSV txt file should look like this: H,1001,3000.00,1234 D,inv001,2000.00,1234 D,inv002,1000.00,1234
|