The error is not that it shows you the value in cents, that is, 500 instead of 5.00.
The error is that all the other columns that refer to money do so with the 0.00 format, except for the price .
For example (actual values from a CSV exported from itch):
product_price = 599
tax_added=1.26
tip=0.00
marketplace_fee = 0.59
If the data uses one format, but only one column uses a different format, it's obviously a bug in the code that exports the values.
The problem is not the name of the column (dollars or cents), it is that the change in the format can lead to errors, since the numbers cannot be compared directly.
This is a detail, since correcting it is something very simple, but if you don't have any kind of knowledge in spreadsheets, it could be more complicated.