The datagridview dgv is populated from a datatable.
One of the columns ion dgv is called cashValue which I would like it to have thousand separators. So during the population of the data in the dgv, I have this code:
dgv.Columns["CashValue"].DefaultCellStyle.Format = "C";

It seems to solve the thousand separator but I do not want the currency sign. Can I use this style but without the currency sign?
Thanks