Okay, so I've done this qyute a few times in the past, but haven't touched code for a few months.
Code:
x = Selection.Row
y = Selection.Column
With ActiveSheet
.Cells(x, (y + 1)).Value = "kfhdfksh"
' GIDrs!Medlemsskab
End With
Its should be pretty obvious what I wish to. Basically I grab the coordinates of the current cell, and want to add a value to the cell next to it. Initially I am just testing with dummy data, but will be fetching data out of an ADO recordset.
Apparently I'm referencing the cell wrong, but can't seem to figure out in which way?
Thanks for any (really noobish) help,
Trin