Vælg celle udfra række og kolonne - excel
Hvordan vælger jeg en kolonne og en celle ud fra række nummer og colonne nr? Det er koden til RANGE("....").select jeg mangler.KODE ==============
Sub test()
Dim st_r_find As Integer
Dim st_k_find As Integer
For Each cell In ActiveSheet.Range("H:H") '
If cell.Text = "start" Then
st_r_find = cell.Row + 1
st_k_find = cell.Column
GoTo Stop_find
End If
Next
Stop_find:
Range("A1") = st_r_find
Range("A2") = st_k_find
' Her jeg mangler den rigtige kode
RANGE(st_k_find & st_r_find).select
End Sub