Number format TextBox?

  • Thread starter Thread starter hoyos
  • Start date Start date
H

hoyos

How do I number format this code to read ("###0")

..Range("J188") = .Range("J187").Value
 
..Range("J188") = .Range("J187").Value
..RANGE("J188").NumberFormat = "###0"

'if you want to change the value then
..Range("J188") = Round(.Range("J187").Value)

If this post helps click Yes
 
Thank you Jacob that will do nicely!!

Jacob Skaria said:
.Range("J188") = .Range("J187").Value
.RANGE("J188").NumberFormat = "###0"

'if you want to change the value then
.Range("J188") = Round(.Range("J187").Value)

If this post helps click Yes
 
Back
Top