Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI All ,
I have a field by name "Seriese " un d1er which the content are like
1
2
3
4
5
.
. ans so on
Now i want have DT infron of all the content how do i do this in the script level ?
Sample Example:
Under Dimension ther is a Variable being displayed which is displaying ,
1
2
3
4
5
6
No under the same Dimension iam trying to edit the it like this : 'Diode' & $(Extreme_Diode_CityRank_Descript).
When i do the above change it is not displaying the value but itis just showing Diode thats it ? May i know how can i concatenate this .
may be this
'DT' & Seriese as Seriese
And how about under the dimension ?
Under Dimension ther is a Variable being displayed which is displaying ,
1
2
3
4
5
6
No under the same Dimension iam trying to edit the it like this :
'Diode' & $(Extreme_Diode_CityRank_Descript).
When i do the above change it is not displaying the value but itis just showing Diode thats it ? May i know how can i concatenate this .
Try putting single quotes around variable expansion like:
'Diode' & '$(Extreme_Diode_CityRank_Descript)'
Hi john,
Check whether the variable is getting get properly ...
you can concatenate easily like
filed1 & '-'& field2 as new_field
'DT' & Seriese as DTSeriese,
Dear John,
Can you share your sample data and variable expression?
Kind regards,
Ishfaque Ahmed
Hi tresco its giving an error
Try without the $ sign :
'Diode' & Extreme_Diode_CityRank_Descript
Extreme_Diode_CityRank_Descript is a field or variable ??
Could you post a sample qvw with inline data perhaps?