Hi, Miriam, Table checkpoints is not what I want:
Table Checkpoints check a table against the contents of a control. I want to compare two tables produced from two different controls.
e.g. in pseudo code:
Table.grabTableFromControl1(table1); -> saves contents in table1
..other…
Table.grabTableFromControl2(table2); -> saves contents in table2
compareTables(table1, table2); -> compares table contents.
OR more flexibly: Table.grabTableFromControl1(table1);
Table.exportTable(table1, “C:\desktop\table1.csv); -> exports table1 contents to a csv file.
Ditto table2
Then I can supply my own comparison program to compare tabel1.csv with table2.csv