Just add + between variables.
" The number is " + variable1 + variable2 + variable3
If you want spaces between variables -
"The number is " + variable1 + " " + variable2 + " " + variable3
If variable is not a string type then add .ToString to the variable.
" The number is " + variable1.ToString
Regards,
Karthik Byggari
Hi @ROBERT_RUSSELL_MONSA,
Welcome to forum. As @KarthikByggari mentioned just append variables and convert them to .tostring as message box accepts string input.
Try this
"The number is " + random.Tostring
Note: You have to convert the variable to string datatype while using in Message box activity.
Thanks!
Thank you so much, Sir.
Thank you so much.
Thank you very much.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.