Charles.X wrote:
For your specific question, if you write the database script, you can use it in the future too.
For your specific case the script below should work, it will add the last user behind the current text in the description field.
I would recommend creating a backup of your installation before you run the script to be safe, you can find backup instructions here: https://www.lansweeper.com/kb/94/backing-up-your-installation.html
update tblassets
set Description = Description + ' ' + Username
Hi Charles,
Thank you so much for your assistance!
If I could just request a walkthrough on backing it up, as I haven't personally done that yet?
Also, is there a way I can also add in the state of the asset in description? Would that be something like
update tblassets
set Description = Description + ' ' + Username + State ?
I really appreciate your time and assistance, thanks again!