I was just wondering if there was a way to create a custom format in a DataGridViewCellStyle to display data in thousands.
In Excel there is a custom format where you can type 1000 into a cell but it is displayed as 1. I've tried searching these boards but all of my searches return how to insert a thousands separato, which I alread know how to do.
My current workaround is to dividie the data by 1000 before loading the DGV, and then multiplying the user inputs returned back by 1000, but there has to be a better way. I'm dealing with some really large numbers (in Chilean pesos, no less) so I can't show the real number.