cancel
Showing results for 
Search instead for 
Did you mean: 

filtering first row coming from TAG Query

Former Member
0 Kudos

Hi,

Can someone please tell me how to filter firstRow of TAG Query through Repeater.

Is there any way by which i can write some logic in Repeater Action so that every time it will filter the first row coming from Tag Query

Thanks in Advance

Muzammil

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Configure your repeater to use something like this:

MyQuery.Results{/Rowsets/Rowset/Row[position() != 1]}

Former Member
0 Kudos

Hi Ryan,

Thanks a lot for your instant help

Regards

Muzammil

Answers (1)

Answers (1)

Former Member
0 Kudos

Also, if you want to physically remove the first row prior to any subsequent processing, add an assignment block, and make the target for a "Remove XML" link the following:

YourQuery.Results{/Rowsets/Rowset/Row[position() == 1]}

Best regards,

Rick