G
Guest
I'm sure this question has been asked a thousand times before so please
excuse me if you have read it already.
I have a table setup to list our employees It has Values of "FirstName" and
"LastName" and one for "email" The email/username is made of the 1st letter
of the first name and the whole last name. I made this function that works
great as and update query and I can make a button on a form to trigger this
query but it there anyway that I can put a funtion like this into the default
value in the "email" field? Or is there a way in the form itself to do
something to this? I'd like to get it into the table itself so it'll carry
over and also in case people start to data enter without using the form. The
other reason I want to do this is because there are a few people that do have
different usernames than the cookie cutter formula and I would like to change
them once and not have to go back everytime I hit the query button and change
their emails in the database.
LCase(Left$(Employees!FirstName,1)+Employees!LastName)
excuse me if you have read it already.
I have a table setup to list our employees It has Values of "FirstName" and
"LastName" and one for "email" The email/username is made of the 1st letter
of the first name and the whole last name. I made this function that works
great as and update query and I can make a button on a form to trigger this
query but it there anyway that I can put a funtion like this into the default
value in the "email" field? Or is there a way in the form itself to do
something to this? I'd like to get it into the table itself so it'll carry
over and also in case people start to data enter without using the form. The
other reason I want to do this is because there are a few people that do have
different usernames than the cookie cutter formula and I would like to change
them once and not have to go back everytime I hit the query button and change
their emails in the database.
LCase(Left$(Employees!FirstName,1)+Employees!LastName)