S stu_c Registered User. Local time Today, 05:26 Joined Sep 20, 2007 Messages 494 Oct 26, 2021 #1 Hi all I have a field where the users types the area for example LONDON is there a way to auto populate this into another field showing the first 3 letters already in place?
Hi all I have a field where the users types the area for example LONDON is there a way to auto populate this into another field showing the first 3 letters already in place?
The_Doc_Man Immoderate Moderator Staff member Local time Yesterday, 23:26 Joined Feb 28, 2001 Messages 30,049 Oct 26, 2021 #2 Look up the LEFT$(string, number) function, which will take the number of specified characters starting from the left of the string. Left function (Visual Basic for Applications) Office VBA reference topic docs.microsoft.com
Look up the LEFT$(string, number) function, which will take the number of specified characters starting from the left of the string. Left function (Visual Basic for Applications) Office VBA reference topic docs.microsoft.com
theDBguy I’m here to help Staff member Local time Yesterday, 21:26 Joined Oct 29, 2018 Messages 22,506 Oct 26, 2021 #3 Normally, you wouldn't store this "calculated" value in the table. Instead, just use a query everytime you need this information.
Normally, you wouldn't store this "calculated" value in the table. Instead, just use a query everytime you need this information.