Feb 4, 2010 #1 Smithsc MIS Joined Apr 20, 2007 Messages 143 Location 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 Joined Feb 9, 2002 Messages 32,818 Location 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 Joined Apr 20, 2007 Messages 143 Location GB Thanks Ibass. That worked perfectly Upvote 0 Downvote