...
*** Please note code below is no longer needed. Use the point-and-click method using the Repeater control ***
Displaying a table with one row per encounter
...
Encounter Date | Encounter Name | Variable 1 | Variable 2 |
10/1/2011 | Baseline | 128 | 75 |
11/5/2011 | Month 1 | 123 | 60 |
12/2/2011 | Month 2 | 118 | 62 |
Displaying a table with one row per encounter with the encounters sorted in descending order
...
Encounter Date | Encounter Name | Variable 1 | Variable 2 |
12/2/2011 | Month 2 | 118 | 62 |
11/5/2011 | Month 1 | 123 | 60 |
10/1/2011 | Baseline | 128 | 75 |
...
Outputting the data from latest encounter which meets a condition
...
Encounter Date | Encounter Name | Variable 1 | Variable 2 |
11/5/2011 | Month 1 | 190 | 60 |
...
Displaying data in a custom layout from fixed encounters
...