I feel like there is something basic I am missing here, but I can't figure this one out.
The most basic way for me to put the question I have would be this:
If I have data which is arranged by date (some dates have a single row of data, some have multiple), each row of which contains a running balance, how can I get only the last row of each date to display? For instance, in the below, I want to have only the last value for each day display, so I'd have one row for 2/4, one row for 2/5, one row for 2/6 and one row for 2/7. No sum of numbers from the Balance column is necessary. Any ideas?
<tbody>
</tbody>
The most basic way for me to put the question I have would be this:
If I have data which is arranged by date (some dates have a single row of data, some have multiple), each row of which contains a running balance, how can I get only the last row of each date to display? For instance, in the below, I want to have only the last value for each day display, so I'd have one row for 2/4, one row for 2/5, one row for 2/6 and one row for 2/7. No sum of numbers from the Balance column is necessary. Any ideas?
Date | Balance |
2/4/14 | 100 |
2/5/14 | 150 |
2/5/14 | 93 |
2/6/14 | 145 |
2/6/14 | 800 |
2/7/14 | 850 |
<tbody>
</tbody>