New Poster here,

hoping this is simple:

Just trying to figure out how to paste the value of a VBA integer into Excel.

Basically I have

Dim lCount As Integer
....
'then lCount is set based on an if statement
lCount = 4


how would I paste lCount to an Excel Cell so 4 shows up, in A1 for example?

Thanks.