I would like to format the values (they are a Pandas series) in a column.
When I run the following code on category_table which is a Pandas DataFrame
num_format = '{:,}'
category_table = num_format.format(category_table['Forecast_Sales'])
I get the following error
TypeError: unsupported format string passed to Series.__format__
I have looked on stack overflow for answer but have not had any luck