Hello. I want to use VBA to add a string of text to a field that already has a string of text (as opposed to replacing it).
For example, lets say I have a field called [Information] in frmMain. This field has a value of "Alpha."
I then use another form (frmTwo) to add a value to the field, such as "Beta". I current use Forms!frmMain.Information.Value - Me.Information.Value. However, this code replaces "Alpha" with "Beta". How to I get it to say "Alpha Beta"