gregorytan Posted April 21, 2009 Posted April 21, 2009 Hi If i need to total the no of day, in calculation which Function should I use? eg. 14/04/09 to 16/04/09. Total no of day is 3 day Thank gregory
gregorytan Posted April 21, 2009 Author Posted April 21, 2009 Hi It should be 3 day. If we use date2 - date1 I only get 2 day Thank gregory
comment Posted April 21, 2009 Posted April 21, 2009 Use EndDate - StartDate + 1, if you want to include both in the count.
mr_vodka Posted April 21, 2009 Posted April 21, 2009 Well most want the difference in the dates. You can try the following: Case ( NOT IsEmpty ( date1 ) AND NOT IsEmpty ( date2 ); date2 - date1 + 1 )
gregorytan Posted April 21, 2009 Author Posted April 21, 2009 Hi Yes both work for me. Thanks cheers gregory
Recommended Posts
This topic is 5754 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now