Hi-
Im using the following code to insert text into a cell 10 columns to the right of the date cell.
Sheets ("balance sheet").select
Range("d5").Select
While ActiveCell.Value <> Int(Now)
ActiveCell.Offset(1, 0).Select
Wend
ActiveCell.Offset(0, 10).Value = TextBox1.Text
End With
The problem is that I do not want to show the "balance sheet" when this command takes place. How do I write or fix this code so that when I press the commandbutton on the userform, the code lists textbox1.text , but does not show me the "balance sheet"?
thanks!
Im using the following code to insert text into a cell 10 columns to the right of the date cell.
Sheets ("balance sheet").select
Range("d5").Select
While ActiveCell.Value <> Int(Now)
ActiveCell.Offset(1, 0).Select
Wend
ActiveCell.Offset(0, 10).Value = TextBox1.Text
End With
The problem is that I do not want to show the "balance sheet" when this command takes place. How do I write or fix this code so that when I press the commandbutton on the userform, the code lists textbox1.text , but does not show me the "balance sheet"?
thanks!