Hi @Tyler Suard
I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others ", I'll repost your solution in case you'd like to accept the answer.
Ask: How to fix "The data field ___ in the document with key ___ has an invalid value type of Edm.Double. The expected type was Edm.Int32
Solution:I solved this issue. The problem is, that particular field was coming in as a string from CosmosDB, and it was "0.0". When I used "StringToNumber(field))" in my data source, it was interpreting 0.0 as a double-precision float. I just changed the data source to use ROUND(StringToNumber(field)) instead. That rounded the number up to 0 instead of 0.0, which was interpreted as a 32bit integer rather than a double.
Please don’t forget to Accept Answer
and Yes
for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members.