Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is is possible to use a variable in the field value of a "Select in field" action to define the field we would like to make the selection in? The business requirement is that the field we are looking to select in may change from client to client and we are looking to push the fields into variables in the load script to make deployment as easy as possible while also minimizing the need to update the dashboard.
Just using 2 variables, one for the field we would like to pass into the the field value and the other to pass the field value into the Search String.
Let vE_KPI_CLIN01_ACTION_FIELD01 = '[Stay or Visit]';
Let vE_KPI_CLIN01_ACTION_FIELD_VAL01 = 'S';
Have tried various permutations of Set and Let and useage of single quotes around the field name.
Any guidance or assistance is greatly appreciated, thanks!
I believe that is likely going to result in a potential timing issue for you, so I would not recommend doing that depending upon how you are setting things etc. If those are set on-the-fly, then it may be problematic, if you are setting those in the load script etc., then it may be ok, hopefully makes a little sense.
I thought the Help might have something, but does not appear so. Let me try one other explanation, that might make more sense, there is no guarantee the order of the variable expressions being calculated, so if one relies upon the other, but the calculation order flips as to what you want it to be, that is where the issue is going to occur, hopefully that makes it click for you...
Keep in mind I know enough to be somewhat dangerous with development stuff, so will be curious for one of the other MVP level folks to chime in on this one to provide their thoughts on this one, but hopefully this may help a little.
Regards,
Brett
Maybe something like the below
set Variable1 = Fieldname ;
In the field put ='$(Variable1)'