Every time I try to input a number through the input box and into a cell, it converts to a full percentage. That cell is formatted to "Percentage" anyway. But I need it to function normally. For example, If I put 20 in the InputBox, I want it to show as 20% in the cell, and not as 200% here is the code I am using..
Range("C5").Select
Range("B3").Value = InputBox("What is the Property Postcode?")
Range("B4").Value = InputBox("What is the Purchase Price?")
Range("B5").Value = InputBox("What is the Deposit?")
Range("B7").Value = InputBox("What is the Interest Rate?")
Range("B8").Value = InputBox("What is the Terms In years?")
Range("B9").Select
I need cell B7 to show what I insert in the InputBox and not multiply it by 100
Thanks!
Range("C5").Select
Range("B3").Value = InputBox("What is the Property Postcode?")
Range("B4").Value = InputBox("What is the Purchase Price?")
Range("B5").Value = InputBox("What is the Deposit?")
Range("B7").Value = InputBox("What is the Interest Rate?")
Range("B8").Value = InputBox("What is the Terms In years?")
Range("B9").Select
I need cell B7 to show what I insert in the InputBox and not multiply it by 100
Thanks!