This is probably incredibly easy but it is evading my thought process.
I need to select an entire row in exce BUT with variables. It will work with: Rows("13:13").Select
but the "13" need to be a variable. I have thried the following but it has not worked:
Rows(Cells(x5, x5), Cells(x5, x5)).Select
Range("Cells(x5, x5), Cells(x5, x5)").Select
Rows(X,X).Select
Rows("X:X").Select
Afterwards I would use:
Selection.EntireRow
Selection.Delete Shift:=xlUp
Any help would be appreciated...Thank you!
I need to select an entire row in exce BUT with variables. It will work with: Rows("13:13").Select
but the "13" need to be a variable. I have thried the following but it has not worked:
Rows(Cells(x5, x5), Cells(x5, x5)).Select
Range("Cells(x5, x5), Cells(x5, x5)").Select
Rows(X,X).Select
Rows("X:X").Select
Afterwards I would use:
Selection.EntireRow
Selection.Delete Shift:=xlUp
Any help would be appreciated...Thank you!