Reputation: 8506
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?
Upvotes: 4
Views: 2200
Reputation: 8782
You got it almost right. The expression should be:
= "Equipment: " & Fields!EquipmentName.Value
Upvotes: 8