Hello guys, I am back once again. But I haven't been here for a long time. That means that you guys have taught me a lot about MS Access, and I try to figure it out before I come here for help, and the help is very much appreciated.
I know that when you create a form from a table, and if you want to type in one field and have infomation flow into another field automatically you use the example below in an event.
Private Sub IDNumber_AfterUpdate()
Me![Location] = Me![IDNumber].Column(1)
Me![Description] = Me![IDNumber].Column(2)
But I want to know if this can be done just but typing in the table, and not making a form from the table? I want to be able to type in one field in the table and have information flow into the next 2 or more fields.
Is this possible? Thanks for you all help in advance.
BLB - Always Grateful
A good friend will bail you out of jail. A true friend will be sitting at your side saying, "Boy - didn't we have fun?"
I know that when you create a form from a table, and if you want to type in one field and have infomation flow into another field automatically you use the example below in an event.
Private Sub IDNumber_AfterUpdate()
Me![Location] = Me![IDNumber].Column(1)
Me![Description] = Me![IDNumber].Column(2)
But I want to know if this can be done just but typing in the table, and not making a form from the table? I want to be able to type in one field in the table and have information flow into the next 2 or more fields.
Is this possible? Thanks for you all help in advance.
BLB - Always Grateful
A good friend will bail you out of jail. A true friend will be sitting at your side saying, "Boy - didn't we have fun?"