View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Kathy - Lovullo[_2_] Kathy - Lovullo[_2_] is offline
external usenet poster
 
Posts: 1
Default Populate selected Cell with variable

Hello,

I have a very simple VBA question.

I have some VBA code which is already looping through data and setting a
variable. I want to take this variable and populate it the first empty cell
in a specified range.
I have already selected the cell where I want to populate the data:

Range("G53").End(xlUp).Offset(1, 0).Select

How to I now populate the cell found with the variable named "strTrip".

Many Thanks!