Have ([Name-Width]*.0393701).toFixed(4);
so far
The [Name-Width] pulls a hsize from a XML XPath then converts that value from millimeters to inches to the fourth decimal point.
Now I need to get a result that makes it looks nice.
Examples:
5.1250 = 5.125
5.0625 = 5.0625
5.2500 = 5.25
5.0000 = 5
5.5000 = 5.5
Hope you guys can help.