ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   vba code to cycle through each column in a sheet (https://www.excelbanter.com/excel-programming/310194-vba-code-cycle-through-each-column-sheet.html)

GJones

vba code to cycle through each column in a sheet
 
Hi David;

You can use this:



Sub Try()
Range("A1").Select
ActiveCell.SpecialCells(xlLastCell).Select
MyLastColumn = ActiveCell.Column

Range("A1").Select

For Count = 1 To MyLastColumn

If Not ActiveCell = "" Then
'do your stuff here
End If

ActiveCell.Offset(0, 1).Select

Next


End Sub

Thanks,

Greg



-----Original Message-----
Please help.

I have a macro that applies multiple formatting to a

column.

Now I want to add looping code so that the formatting

will be applied to
each column in the sheet that has data in the first row

for the column; when
there is no more data in the first row(when the entire

column is blank) I do
not want the column to be formatted.

How to I progammatically determine the number of non-

empty columns in a
sheet and then loop through each of these columns?

Thank you.


.



All times are GMT +1. The time now is 02:02 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com