Hello all I´m currently trying to use "cl.column" to establish a column to use in a loop. The relevant part of my code is below.
The issue I´m having is that because cl.column stores the column as a number I don´t know how to reference it in my loop since it isn´t a letter.
for each cl in activesheet.range("A1:BZ1")
if instr(cl, "Deuda") > 0 then
StoredColumn = cl.column
end if
next cl
for each cl In Workbooks(MesActual).Worksheets("Deuda").Range(ColumnA & "8", ColumnA & CounterA)