I have an Excel file with a date column. When I check and read the cell it returns NUMERIC as the cell type. Unfortunately there is no "date type" as the list shows.
I logged these values:
which created
Question: How can one check a cell to be a date when it returns NUMERIC? Could be an integer, too (assuming you get the value with Cell.ValueNumeric)
PS: I know that Excel stores dates via "ticks" internally
I logged these values:
B4X:
Log(Cell.CellType)
Log(Cell.ValueDate)
Log(Cell.Value)
which created
B4X:
NUMERIC
40319
Fri May 21 00:00:00 CEST 2010
Question: How can one check a cell to be a date when it returns NUMERIC? Could be an integer, too (assuming you get the value with Cell.ValueNumeric)
PS: I know that Excel stores dates via "ticks" internally