how do i round off decimal values ?
Example :
decimal Value = " 19500.98"
i need to display this value to textbox with rounded off like " 19501 "
if decimal value = " 19500.43"
then
value = " 19500 "
|
|
|||
|
|
|
Look at Of course, you'll need to parse and format the value to get it from/to text. If this is input entered by the user, you should probably use
|
||||
|
|
|
Try this...
|
||
|
|
|
|
|
||
|
|
|
|
Math.Round( value, 0 ) |
||
|
|