Hey everyone.
Trying to filter items in a repeater to start from the third (3rd) item and on. The reason for this being is that I have another repeater above that is connected to the same dataset, and I want to avoid duplicate items.
Any ideas on how this can be done?
Hi 
You cannot achieve this with the dataset, the only way is using data binding, save the first three items in an array, do a query and get the new items (filtered) and run a check to remove the any item that are similar to the three ones you have, you’ll need a nested for loops to do so.