Jul 30, 2004 #1 mychal Programmer Feb 13, 2002 41 US I want to create a formula, in CR 8.5, that will return the Date of last Monday. Can anybody help? Thanks.
I want to create a formula, in CR 8.5, that will return the Date of last Monday. Can anybody help? Thanks.
Jul 30, 2004 1 #2 lbass Technical User Feb 9, 2002 32,816 US Try: currentdate - dayofweek(currentdate) + 2 But if the currentdate = Monday, this would give you today's date. Is that what you want to happen? -LB Upvote 0 Downvote
Try: currentdate - dayofweek(currentdate) + 2 But if the currentdate = Monday, this would give you today's date. Is that what you want to happen? -LB
Jul 30, 2004 1 #3 bdreed35 Programmer Mar 2, 2003 1,549 US I think this is closer to what you want. currentdate - dayofweek(currentdate,crTuesday) ~Brian Upvote 0 Downvote
Jul 30, 2004 Thread starter #4 mychal Programmer Feb 13, 2002 41 US I'm using bdreed35's formula, but lbass' post helped me to create bdreed35's before he posted it. Starts to both of you! Upvote 0 Downvote
I'm using bdreed35's formula, but lbass' post helped me to create bdreed35's before he posted it. Starts to both of you!