08-21-2008 03:42 PM
Is there a way to embed variable data in a text string? For example, "Water Level is 10.4 ft. " where 10.4 is value of variable named Water_Level.
Thanks,
Chris
08-21-2008 06:47 PM
An & is used to combine text and object and data member (if not implicit) in an expression. Using your example, you would use a text expression with the following in the yellow field:
“Water Level is “&ObjectName.DataMember &” ft.”
If you wanted to always display one decimal use the text function:
“Water Level is “&text(ObjectName.DataMember,”0.0”) &” ft.”
Hope this helps.