PredatorXXI Posted August 8, 2012 Posted August 8, 2012 Why is the following piece of code always returning error code 2 in _DateDiff function, which according to the documentation means: 2 - Invalid $sStartDate $dataficheiro = "07-08-2012" $data = "08-08-2012" GUICtrlSetData($Label11, $dataficheiro) $difdata = _DateDiff("D", $data, $dataficheiro) ConsoleWrite(@error & @CRLF) ConsoleWrite($difdata & @CRLF)
ajag Posted August 8, 2012 Posted August 8, 2012 Wrong date fomat? From the help file: $sStartDate Input Start date in the format "YYYY/MM/DD[ HH:MM:SS]" $sEndDate Input End date in the format "YYYY/MM/DD[ HH:MM:SS]" So try "2012/08/07" ("2012-08-07" will work also) A-Jay Rule #1: Always do a backup Rule #2: Always do a backup (backup of rule #1)
PredatorXXI Posted August 8, 2012 Author Posted August 8, 2012 Thanks, that's it but I'm trying to compare my system date and an Excel cell date and both are in the format dd/mm/yyyy, do I have to convert it before running DateDiff?
water Posted August 8, 2012 Posted August 8, 2012 Yes, when the help file states that the parameters need to be in the format of "YYYY/MM/DD[ HH:MM:SS]" then every other format will return an error. Check the forum for functions to convert the date to the desired format - there are a few available! My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
Recommended Posts
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