Trying to reconcile the display of data in a web table to the same data from a DB2 DB. Unfortunately my company has no formatting continuity.
Table dates are in the mm/dd/yyyy format, and of course DB is in yyyy-mm-dd.
I've tried this to try and get the data format to be recognized as a date so I can use CDate:
dday = Tbl.rows(rd).cells(cd).outerText
dday = Chr(34)&"#"&dday&"#"&Chr(34)
if IsDate(dday) then Log.Message("This is a date")
But it doesn't appear to be working
Any suggestions on how to handle it?