Well, the easier way to change it is definitely to rewrite the value in the Properties palette manually.
But.... if you have plenty of those objects... then you would need a routine for that. Eg. this one.
(vl-load-com)
(defun c:AttRound ( / s a r i e)
(if (and (setq s (ssget "_:L" '((0 . "INSERT"))))
(setq a (car (nentsel "\nPick an attribute to round: ")))
(setq a (cdr (assoc 2 (entget a))))
(setq r (cond ((getint "\nSpecify number or decimal to round to <2>: ")) (2)))
)
(repeat (setq i (sslength s))
(setq e (ssname s (setq i (1- i))))
(if (not (vl-catch-all-error-p (vl-catch-all-apply 'getpropertyvalue (list e a))))
(setpropertyvalue e a (rtos (atof (getpropertyvalue e a )) 2 r)))))
(princ)
)
Learn HERE how to use a LISP if you need to.