Mar 17, 2010 #1 bslaast MIS Oct 22, 2009 46 US I have a report that is groupping by week. I want to change the week to Saturday-Friday and display the Friday date. Any ideas?
I have a report that is groupping by week. I want to change the week to Saturday-Friday and display the Friday date. Any ideas?
Mar 17, 2010 #2 lbass Technical User Feb 9, 2002 32,818 US Insert a group on this formula: {table.date}-dayofweek({table.date},crSaturday)+1 To display the weekending date in the group header, use: {table.date}-dayofweek({table.date},crSaturday)+7 -LB Upvote 0 Downvote
Insert a group on this formula: {table.date}-dayofweek({table.date},crSaturday)+1 To display the weekending date in the group header, use: {table.date}-dayofweek({table.date},crSaturday)+7 -LB
Mar 18, 2010 Thread starter #3 bslaast MIS Oct 22, 2009 46 US Perfect, as always. Thanks! Upvote 0 Downvote