Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to concat string with expression?

I have a textbox, and I want to set it's value to this:

Equipment: Equipment Name

So I tried to set this at textbox expression value:

"Equipment: " & =Fields!EquipmentName.Value

Altought this doesn't work. How can I concat "Equipment" with an expression?

like image 688
alansiqueira27 Avatar asked Mar 18 '23 05:03

alansiqueira27


1 Answers

You got it almost right. The expression should be:

= "Equipment: " & Fields!EquipmentName.Value
like image 181
PiotrWolkowski Avatar answered Mar 23 '23 01:03

PiotrWolkowski