Hello All,
I have a Continuous form with a text field named Description that holds data input by users. The information usually contains a size such as 1/4" or 1/2" but won't always have the " which is used to denote Inch. I'm using the following code to automatically copy the last field into the next field so it doesn't have to be retyped on each line.
Const cQuote = """"
Me!Description.DefaultValue = cQuote & Me!Description.Value & cQuote
It is working fine unless the user uses " to denote inches.
Can anyone help me with some code so that this will work regardless of whether the user inputs 1/4" or inputes 1/4 Inch? Is there an if function that would determine if " is a character in the input data?
Thank you in advance
I have a Continuous form with a text field named Description that holds data input by users. The information usually contains a size such as 1/4" or 1/2" but won't always have the " which is used to denote Inch. I'm using the following code to automatically copy the last field into the next field so it doesn't have to be retyped on each line.
Const cQuote = """"
Me!Description.DefaultValue = cQuote & Me!Description.Value & cQuote
It is working fine unless the user uses " to denote inches.
Can anyone help me with some code so that this will work regardless of whether the user inputs 1/4" or inputes 1/4 Inch? Is there an if function that would determine if " is a character in the input data?
Thank you in advance