Hi there,
I have a calculation taking place on a work sheet - a calculation to work out a percentage.
=IFERROR(SUM(D6/D5),0)
In this example I'm using Loan (£100,000) / Property Value (£200,000) = 0.5 (formatted to %) = 50%
All I want to do it have my user form pull through the value of '50%' but it keeps pulling through '0.5'
I'm using a command button to trigger the below code - this populates a textbox with the value of 0.5
I need something that basically converts the 0.5 value to 50%
I have a calculation taking place on a work sheet - a calculation to work out a percentage.
=IFERROR(SUM(D6/D5),0)
In this example I'm using Loan (£100,000) / Property Value (£200,000) = 0.5 (formatted to %) = 50%
All I want to do it have my user form pull through the value of '50%' but it keeps pulling through '0.5'
I'm using a command button to trigger the below code - this populates a textbox with the value of 0.5
I need something that basically converts the 0.5 value to 50%
Code:
Private Sub CalculateBu_Click()
LTVTB.Value = Sheets("Form Validation").Range("D9")
End Sub