Apr 29, 2001 #1 swiff Technical User Apr 28, 2001 2 AU Hi there, As a novice... How do I display a value into an Excel Cell?? Is this right? for example: Sheet1.Range("B" & n) = n Cause it doesn't work... any ideas... thanks a lot Jacintha
Hi there, As a novice... How do I display a value into an Excel Cell?? Is this right? for example: Sheet1.Range("B" & n) = n Cause it doesn't work... any ideas... thanks a lot Jacintha
Apr 29, 2001 #2 Codfish Programmer Apr 29, 2001 11 US Like this: Sheet1.Range.("A1".Value = 1 OR Coord = "A1" Sheet1.Range.(Coord).Value = 1 Upvote 0 Downvote
Like this: Sheet1.Range.("A1".Value = 1 OR Coord = "A1" Sheet1.Range.(Coord).Value = 1