I am trying to create a dynamic query filter with N columns but to do this I must store the entire query in a parameter.
Assuming $myParam = "@Title"
' Select="Rows/@Title" ' != 'Select="Rows/$myParam" '
Eventually the goal is to have
$myParam= "starts-with(@Title,'s')"
Select="Rows[$myParam]"
How can I reference a field in a parameter properly?
If this is not possible is there a way I could extract substrings and things like that within my xsl code?