Fill in text field value with few variable/field
From SimIT Wiki
Combine text value in text field
- You can combine few variable/field value together easily in text field via syntax $V{var1}+"-"+$F{field1}
- You cannot perform calculation with above method because it only workable for append string
Calculation in text field
- Start from version 0.7, you can sum data for a few variable together with syntax below
- "("+$V{var1}+$V{var2}+")"
- First 3 character shall always be "(" and last 3 character must be ")", 3 character included symbol "
- operation -,*,/ is not supported at this momment

