Feb 4, 2010 #1 Smithsc MIS Apr 20, 2007 143 GB Is there any functions similar to "OnFirstRecord" that can calculate the first record of a group.
Feb 4, 2010 1 #2 lbass Technical User Feb 9, 2002 32,816 US You can use a clause like this in your formula: ( onfirstrecord or {table.groupfield} <> previous({table.groupfield}) ) You need to build in the "onfirstrecord" since for the first record there is no previous field, and the formula would otherwise return a null. -LB Upvote 0 Downvote
You can use a clause like this in your formula: ( onfirstrecord or {table.groupfield} <> previous({table.groupfield}) ) You need to build in the "onfirstrecord" since for the first record there is no previous field, and the formula would otherwise return a null. -LB
Feb 4, 2010 Thread starter #3 Smithsc MIS Apr 20, 2007 143 GB Thanks Ibass. That worked perfectly Upvote 0 Downvote