Over 1.106.000 registered users (EN+CZ).
AutoCAD tips, Inventor tips, Revit tips, Civil tips, Fusion tips.
Try the new precise Engineering calculator.
New AutoCAD 2026 commands and sys.variables and env.variables,.
CAD tip # 3972:
Question
A
Use the MASSPROP command - it will list the volume (and other characteristics) of the selected 3D solids (ACIS bodies).
You can also use the following LISP routine (thanks to MikD):
(defun c:vol ()
(alert
(strcat "Volume is "
(rtos (/ (vlax-get-property
(vlax-ename->vla-object (car (entsel)))
'volume
)
1000000000.0 ;mm->m3
)
2
2 ;decimal places
)
" m3"
)
)
(princ)
)
ACADADTMap
10.8.2004
96248×
![CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz] CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]](../common/arkance_186.png)

