alansiqueira27
alansiqueira27

Reputation: 8506

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?

Upvotes: 4

Views: 2200

Answers (1)

PiotrWolkowski
PiotrWolkowski

Reputation: 8782

You got it almost right. The expression should be:

= "Equipment: " & Fields!EquipmentName.Value

Upvotes: 8

Related Questions