I created a data frame with a set of data imported from excel. The Dates are in the serial format.
I looked around on the forum and tried to transform the column in my data frame using the following:
ADF <- transform(ADF, CurrentTermEndDate = as.Date(as.numeric(ADF[,2]) ,origin ="1899-12-30"))
But it only returns NA for all the values it updates. Is there something I'm missing?