Load Value into textbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I'm trying to load a value from my sheet into a textbox but multiplied by
100 so the percentage has the correct decimal place. I am having trouble
getting it to work.

Me.txtRentalTax.Value = .Cells(Choice, 8).Value * 100
Me.txtGrossUp.Value = .Cells(Choice, 9).Value * 100

Thanks
 
Me.txtRentalTax.Value = Format(.Cells(Choice, 8).Value , "0.00%")

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Thanks!
--

Karen


Bob Phillips said:
Me.txtRentalTax.Value = Format(.Cells(Choice, 8).Value , "0.00%")

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top