How can I put multiple variable types in a message box?

Capture

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.

Hi @ROBERT_RUSSELL_MONSA,

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.