Jul 1, 2008 #1 cranebill IS-IT--Management Jan 4, 2002 1,113 US I have a statement that clears the contents of cells... Range("I7:I8").ClearContents How would I write something that would populate each cell in the range with a zero?
I have a statement that clears the contents of cells... Range("I7:I8").ClearContents How would I write something that would populate each cell in the range with a zero?
Jul 1, 2008 #2 S SkipVought Programmer Dec 4, 2001 47,492 US Hi, Code: Range("I7:I8").Value = 0 Skip, Just traded in my old subtlety... for a NUANCE! Upvote 0 Downvote
Jul 1, 2008 #3 S SkipVought Programmer Dec 4, 2001 47,492 US BTW, please post further VBA questions in Forum707. Skip, Just traded in my old subtlety... for a NUANCE! Upvote 0 Downvote
BTW, please post further VBA questions in Forum707. Skip, Just traded in my old subtlety... for a NUANCE!
Jul 1, 2008 #4 AnotherHiggins Technical User Nov 25, 2003 6,259 US For future reference, please post VBA-specific questions in forum707. Range("I7:I8") = 0 [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ 181-2886 before posting. Upvote 0 Downvote
For future reference, please post VBA-specific questions in forum707. Range("I7:I8") = 0 [tt]_____ [blue]-John[/blue][/tt] [tab][red]The plural of anecdote is not data[/red] Help us help you. Please read FAQ 181-2886 before posting.