Jump to content

Abbreviation expander


This topic is 8460 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Not by typing the space bar. But, if you have a limited number of abbreviations, you can make up a calculated field which uses the Substitute() function to expand the abbreviations. It can either be a multiply nested Substitute(), if you have only about 10 or less abbreviations, like this:

ExpandedText=

Substitute(

Substitute(

Substitute(

Substitute(

Substitute(InputText,

"abbrev1","fullword1"),

"abbrev2","fullword2"),

"abbrev3","fullword3"),

"abbrev4","fullword4"),

"abbrev5","fullword5")

or if you have a lot more, you will need to store them in a separate related file and run a script with a loop to expand them. Not as neat.

Then, what you can do is superimpose your calculated field directly over your input field with the "allow entry into field" option off for the calculated field. When you click on the field, you will actually be editing the input field, but when you leave the field, the calculated field will display. Make sure the calculated field is opaque and in front.

Link to comment
Share on other sites

This topic is 8460 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.