I’m trying to do something like this : "Today is " +date ", it is a " +day
But it gives me a “End of expression” error message - how do I fix this?
I’m trying to do something like this : "Today is " +date ", it is a " +day
But it gives me a “End of expression” error message - how do I fix this?
Hello @NCheah - and welcome to the UiPath Community Forums! ![]()
I think you are missing a “+” from your line.
Try this:
"Today is " + date + ", it is a " +day
Edit: Assuming “date” is a variable.
Thanks! That’s what it was!