For my web site, I added a "Model" custom field where users can input if their photo is of, for example, a Shelby GT500. I have gotten requests to reduce the number of fields on the upload page, so I would like to remove the Model field but keep that data by moving it to the Keywords field.
I do not want to overwrite the Keywords field, just add a space followed by the contents of the Model field after whatever is already there if there is anything in the Model field.
************************************
If Model is not null
Then If Keywords is not nullThen Keywords = Keywords & " " & Model
Else Keywords = Model
Else Do Nothing