When I run my code it says I am using the correct cell (through my variables), but it does not activate the cell or input my variable value into the cell.
myColumnNumber = 1
Range(myColumnNumber & currentRow1).Activate
Range(myColumnNumber & currentRow1) = FirstName & LastName
myColumnNumber = myColumnNumber + 1
Range(myColumnNumber & currentRow1) = AccNumber
myColumnNumber = myColumnNumber + 1
Range(myColumnNumber & currentRow1) = AccName
My variables all show the correct values when running, but the sheet does not change. For example, if I put Range("a1").Activate for the Active Sheet I can see when that cell activates, but my variables do not affect the change in position.
MyColumnNumner steps through adding "1" and my Current row stays at 2, as it should, but on the sheet there is no change. Can you see any errors in this snip, or is more information required? thank you for any assistance.