May 6, 2008 #1 Mr2006 Technical User Joined Jun 21, 2006 Messages 80 Location US , I want to count the days between two days and exclude the start date and end date in a report Example, Start date 01/01/2008 and enddate 01/03/2008 the result will be 1
, I want to count the days between two days and exclude the start date and end date in a report Example, Start date 01/01/2008 and enddate 01/03/2008 the result will be 1
May 6, 2008 1 #2 Kiwiman Technical User Joined May 6, 2005 Messages 88 Location GB try in your underlying query. Per your above example, this will give 1 as the result Code: Diff:datediff("d",yourdate1,yourdate2)-1 Take it Easy Man with one chopstick go hungry Upvote 0 Downvote
try in your underlying query. Per your above example, this will give 1 as the result Code: Diff:datediff("d",yourdate1,yourdate2)-1 Take it Easy Man with one chopstick go hungry
May 6, 2008 Thread starter #3 Mr2006 Technical User Joined Jun 21, 2006 Messages 80 Location US Wow...it worked perfectly. Thank you Upvote 0 Downvote