MaliciousMike
Registered User.
- Local time
- Today, 02:55
- Joined
- May 24, 2006
- Messages
- 118
Hello,
It's been a while since i posted here for help as my skills are getting really good!
Anyway.
I'm writing a system that imports spreadsheets from our clients into our database. I have made it so it can import as many spreadsheets as possible at any one time and it loops through them.
Sometimes these spreadsheets can contain up to 400 records each, making a lot of records to check, validate and import.
I want the system to run non stop, even if an error has been found in the spreadsheets, so i've made a log table which logs all the errors in all the spreadsheets.
The problem i'm having is that it takes longer to find the record with the problem than it takes to solve the problem. So i'd like for the log to include the spreadsheet's cell number.
The system imports the spreadsheet into a "check" table:
So i'd like the code to import the cell numbers either during this import or using an "INSERT" statement afterwards.
Any help would kick ass!
PS, sorry if this has been solved before but i did search for a while and found nothing.
It's been a while since i posted here for help as my skills are getting really good!
Anyway.
I'm writing a system that imports spreadsheets from our clients into our database. I have made it so it can import as many spreadsheets as possible at any one time and it loops through them.
Sometimes these spreadsheets can contain up to 400 records each, making a lot of records to check, validate and import.
I want the system to run non stop, even if an error has been found in the spreadsheets, so i've made a log table which logs all the errors in all the spreadsheets.
The problem i'm having is that it takes longer to find the record with the problem than it takes to solve the problem. So i'd like for the log to include the spreadsheet's cell number.
The system imports the spreadsheet into a "check" table:
Code:
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "tblCheckSheet", My_Path & tmpfile, True
So i'd like the code to import the cell numbers either during this import or using an "INSERT" statement afterwards.
Any help would kick ass!
PS, sorry if this has been solved before but i did search for a while and found nothing.