Lets say you have a column in Datagridview that has Negative and Positive Numbers that act as a data.
How can you display numbers with negatives into Open and Close Parenthesis? For example -5.00 will turn to (5.00)
How can I achied that? TYSM
Lets say you have a column in Datagridview that has Negative and Positive Numbers that act as a data.
How can you display numbers with negatives into Open and Close Parenthesis? For example -5.00 will turn to (5.00)
How can I achied that? TYSM
Answering to your comments.
Doing it in SQL add to your query something like this:
Or
Doing it in vb.net:
You can set the default format for that column:
Some further info on formatting can be found here.