Adrianna
Registered User.
- Local time
- Yesterday, 19:49
- Joined
- Oct 16, 2000
- Messages
- 254
Okay, I've never had a reason to do this before, but like everything else in life, there comes a time when you will need to learn something new (daily for me).
I have code right now that runs correctly to allow selection of a parent, determine it's children, and then run through all of the selected tables to output all records for each child into one of three "asset type" workbooks containing individual worksheets for each table!
As I was working on this, our webmaster added ModifiedBy and ModifiedDate fields to all the tables (yes, instead of a tblModified tracking the Identity fields of the records that have been changed). So, ALL tables have two additional fields and it no interferes with my procedure.
I would like to suggest that we create a Modified table, but I'm not sure whether I have enough justification to go that route, so I'd like to
Select * Except ModifiedBy, ModifiedDate
Since the tables are all different, I can't specify the fields that I would like to see, rather it would be much easier to specify the two fields that I do not want to see.
If this isn't possible....maybe I can do a column count and .hide the last two columns.
I have code right now that runs correctly to allow selection of a parent, determine it's children, and then run through all of the selected tables to output all records for each child into one of three "asset type" workbooks containing individual worksheets for each table!
As I was working on this, our webmaster added ModifiedBy and ModifiedDate fields to all the tables (yes, instead of a tblModified tracking the Identity fields of the records that have been changed). So, ALL tables have two additional fields and it no interferes with my procedure.
I would like to suggest that we create a Modified table, but I'm not sure whether I have enough justification to go that route, so I'd like to
Select * Except ModifiedBy, ModifiedDate
Since the tables are all different, I can't specify the fields that I would like to see, rather it would be much easier to specify the two fields that I do not want to see.
If this isn't possible....maybe I can do a column count and .hide the last two columns.