Forum Discussion
Date changing when uploading to service
Can you share a screenshot of your model/relationships?
It seems more likely that the dates being defined are not broad enough to cover the data and likely a result of the service wanting to do everything in UTC (which is incredibly frustrating). Especially with IR.
My thinking is, if it is a UTC issue and it is affecting the dates enough to kick it back to the last day of the previous year, and your model doesn't cater for it, it could be getting a default 1899 date.
Good morning,
Screenshot of the relationships below. I should note the FC_RentalBillingStartDate and FC_RentalBillingEndDate that are converted into the LineRentalDate in the DAX formula are calculated using the below two DAX formulas (basically just to fill in any blanks, if there are any in the original data).
The bit that I'm really struggling to understand is why it is only doing this for the "Ancillary Revenue" data rather than the "Rental Revenue", even though it is all pulling from the same table.
PBI_RentalContractLine[FC_RentalBillingStartDate]>PBI_RentalContractLine[RentalBillingEndDate],
PBI_RentalContractLine[FC_RentalBillingStartDate],
IF(ISBLANK(PBI_RentalContractLine[RentalBillingEndDate]),PBI_RentalContractLine[RequestedDeliveryDate],PBI_RentalContractLine[RentalBillingEndDate]))