Hi,
I'm currently working on a QVD generator for a renaming stage. Data is extracted from REST API and stored as QVD files. Those QVD files are then loaded with the files being renamed and some transformations applied, such as creating human-readable date and time fields.
Projects:
NOCONCATENATE LOAD
msdyn_projectid AS ProjectId,
Date(Floor(createdon), 'DD.MM.YYYY') AS CreatedOn,
Date(Floor(modifiedon), 'DD.MM.YYYY') AS ModifiedOn,
Date(Floor(overriddencreatedon), 'DD.MM.YYYY') AS OverriddenCreatedOn,
Date(Floor(msdyn_finish), 'DD.MM.YYYY') AS Finish,
Date(Floor(msdyn_scheduledstart), 'DD.MM.YYYY') AS ScheduledStart,
Date(Floor(msdyn_taskearlieststart), 'DD.MM.YYYY') AS TaskEarliestStart
FROM
[lib://01 Extract/MS Planner/Projects.qvd]
(qvd);
As can be seen, the timestamps are treated all the same. The values are numeric, such as 46106.6153125. In the QVD that is created after the extraction stage, the values shown all in the same format. But not in the QVD that is generated with the code above:
In the Cell Profiler, I'm still seeing the numerical value but different styles for "Formatted value":
I am using the latest greatest version, 2.6.0.4. Why is this happening?
Take care
-Stefan



