i have a flow that until today worked fine when it used the formula
addDays('1899-12-30',int(items('Apply_to_each')?['ConstructionStart']),'MM.dd.yyyy')
today i got errors on it, telling me that int wasn't able to resolve (items('Apply_to_each')?['ConstructionStart']) to an integer.
apply_to_each is reading data from an excel spreadsheet, and ConstructionStart is a column in my table formatted as a date.
I found when i looked at previously successful runs, that the data incoming from the get excel list looked like this when i ran it last week
"ConstructionStart":"45754"
but looks like this when i ran it today
"ConstructionStart":"2018-09-11T00:00:00.000Z"
I guess this is Microsoft living it's best life, switching things up, to give us all some better bugs to squash.
two possible solutions which i am trying.
1) change the number format of the column in my excel table to "general" suboptimal, but very likely to work
2) change the formula to remove the int function addDays('1899-12-30',items('Apply_to_each')?['ConstructionStart'],'MM.dd.yyyy')
thoughts? similar experiences? something else?