Is there a way for me to retrieve 2 sets of data at once for designer, one is a .csv file while the other is from an access database. I have a raw data that goes like this:
fullname 1, address, transaction 1
fullname 1, address, transaction 2
fullname 1, address, transaction 3
fullname 1, address, transaction 4
fullname 2, address, transaction 1
fullname 2, address, transaction 2
fullname 2, address, transaction 3
fullname 3, address, transaction 1
-
The .csv will contain the 1st line of every account as this job needs to count every unique record. As for the above example, it would contain:
fullname 1, address, transaction 1
fullname 2, address, transaction 1
fullname 3, address, transaction 1 -
Then I have a database that would store the transactions for above accounts with 2 or more lines,
fullname 1, address, transaction 2
fullname 1, address, transaction 3
fullname 1, address, transaction 4fullname 2, address, transaction 2
fullname 2, address, transaction 3