Thanks for quick reply, much appreciated.
Filtering is done using the code (C#)
I used the following code to filter out the data(added it under changed event of service drop down)
FileQueryConnection q = (FileQueryConnection)this.DataConnections["Activity List XML"];
q.FileLocation = q.FileLocation + "&FilterField1=Service&FilterValue1=" + e.NewValue;
q.Execute();
I think it is filtering all activity dropdownlists which uses "Activity List XML" data connection.
Instead can I just restrict it to activity dropdown which is in same repeat section as selected Service dropdown?
Cheers