Hello,
What I am trying to do is showing unique rows to a repeating panel filtering by date (older than) but ignoring duplicated rows as explained below.
I am displaying a table,which gets update, to a repeating panel as below:
First report on 05 September
Anent name / ID | Points | Date | |
---|---|---|---|
Agent1 | 8 | 01-Mar | Original |
Agent2 | 4 | 30-Apr | Original |
Agent3 | 8 | 15-May | Original |
Agent4 | 8 | 12-Aug | Original |
Agent5 | 8 | 01-Sep | Original |
Totals | 36 | 05-Sep |
On 15 of September I add a new row for “Agent 2” (I do not want to update the row not to miss historical data) with a new value on column Points.
Anent name / ID | Points | Date | |
---|---|---|---|
Agent1 | 8 | 01-Mar | Original |
Agent3 | 8 | 15-May | Original |
Agent4 | 8 | 12-Aug | Original |
Agent5 | 8 | 01-Sep | Original |
Agent2 | 8 | 15-Sep | Update |
Totals | 40 | 20-Sep |
If I select the date 20 September to display the report(repeating panel) as shown in the second table I want to display only the recent updated row and the other that are unique
How can I display the unique rows ignoring the previous duplicated rows?
Thank you