I have a list of fields:
FeatureName_1
FeatureName_2
FeatureName_3
etc.
I have a field NumFeatures that controls how many fields are displayed.
In a view I'm trying to capture all the values that are displayed like this:
The last line is my problem. I get the value of X returned. Can I do what I'm trying to do?
FeatureName_1
FeatureName_2
FeatureName_3
etc.
I have a field NumFeatures that controls how many fields are displayed.
In a view I'm trying to capture all the values that are displayed like this:
Code:
@For(
x:=1;
x<=NumFeatures;
x:=x+1;
temp1:= FeatureName_ + @Text(x)
);
The last line is my problem. I get the value of X returned. Can I do what I'm trying to do?