Aug 10, 2007 #1 MartUK MIS Joined Jul 25, 2007 Messages 31 Location GB I am using CR XI I want to restrict data from the following : {SP100_ACTIVITIES.EXPECTED_END} >= DateTime (2007, 07, 13, 00, 00, 00) to more generalised current date from 6:30 am onwards. Can some one help with the code syntax please
I am using CR XI I want to restrict data from the following : {SP100_ACTIVITIES.EXPECTED_END} >= DateTime (2007, 07, 13, 00, 00, 00) to more generalised current date from 6:30 am onwards. Can some one help with the code syntax please
Aug 10, 2007 #2 Madawc Programmer Joined Sep 5, 2002 Messages 7,628 Location GB Try Code: {SP100_ACTIVITIES.EXPECTED_END} >= DateTime (Year(Currentdate), Month(Currentdate), Datepart("d", Currentdate), 6, 30, 00) Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10 Upvote 0 Downvote
Try Code: {SP100_ACTIVITIES.EXPECTED_END} >= DateTime (Year(Currentdate), Month(Currentdate), Datepart("d", Currentdate), 6, 30, 00) Madawc Williams (East Anglia, UK). Using Windows XP & Crystal 10
Aug 10, 2007 Thread starter #3 MartUK MIS Joined Jul 25, 2007 Messages 31 Location GB thanks this works, any idea on the other time diff question I had? Upvote 0 Downvote