Ken writes "I have a table with customer transactions.date/time trans$ UserId LastTransAmount2004-06-22 22:02:32.420 12.00 5 ?2004-06-22 22:12:32.420 18.00 5 ?2004-06-22 21:02:32.420 16.00 6 ?2004-06-22 22:12:32.420 14.00 6 ?
I need to populate the lasttransamount with the last transaction amount for these users. I tried using the group by into a temp table, but without grouping by the trans$, I could not get it to work correctly.Here are the results i need:date/time trans$ UserId LastTransAmount2004-06-22 22:02:32.420 12.00 5 182004-06-22 22:12:32.420 18.00 5 182004-06-22 21:02:32.420 16.00 6 142004-06-22 22:12:32.420 14.00 6 14
There are multiple dates in the file also.Thanks,"