Word also has a PointsToCentimeters function, at least Word 2002 VBA does. If that isn't available in Word 2000, you can create it yourself:
Public Function PointsToCentimeters(Pts As Single) As Single
PointsToCentimeters = Pts / 72 * 2.54
End Function
Since 72 points = 1 inch by definition, and 1 inch = 2,54 cm, you can convert from points to centimeters by dividing by 72, then multiplying with 2.54 (or you can divide by 72 / 2.54 = 28.35)



