I would like to know how to calculate MaxDigitWidth variable by using CharWidth and Pixels variables in the following expression:
CharWidth = Truncate((Pixels - 5) / MaxDigitWidth * 100 + 0.5) / 100
It should be in a form:
MaxDigitWidth = ... expression with CharWidth and Pixels variables ...
The problem is that I do not know how to get the expression in the required form because of the Truncate function.