Thanks for the details. Based on what you provided, the results are coming from Excel as a DateTime.
To troubleshoot this, temporarily change the Format for that column from Number to Text. Test your Logic App. If the Output from the "List rows present in table" looks correct (not a datetime), you have identified the start of a solution to your problem.
I did a test with Excel where I played with the format of a Calculated column similar to what you are doing. When I changed the format to "Text", the number came across without the "," separator.
We just want to identify if the Format for the column is going to make a difference for the Output of the "List rows present in table" Action.
If "Text" is working, you can try the Format as "Currency" and/or "Accounting" which may force Excel to send the data over as expected.
If "Text" is working but the other formats do not, then you could try to set the Formula for the Column to resolve as text with a formula like:
=TEXT(SUM(A1:B1),"#,##0")
You would replace "SUM(A1:B1)" with whatever your appropriate formula calculation is.
Let me know if any of these things make a difference.
This community is supported by individuals freely devoting their time to answer questions and provide support. They do it to let you know you are not alone. This is a community.
If someone has been able to answer your questions or solve your problem, please click Does this answer your question. This will help others who have the same question find a solution quickly via the forum search.
If someone was able to provide you with more information that moved you closer to a solution, throw them a Like. It might make their day. 😊
Thanks
-Mark