Forum home » Delegate support and help forum » Microsoft Excel VBA Training and help » Counting Columns
Counting Columns
Resolved · Low Priority · Version 2003
Charlene has attended:
Excel VBA Intro Intermediate course
Counting Columns
How would you count up to the last column?
For upcoming training course dates see: Pricing & availability
RE: Counting Columns
Hi Charlene
In VBA if you have a range/table of data and need to know the number of columns you do the following:
1. Create a Variable to hold the number of columns value
2. Select a cell in the range
3. Use code to count the columns and save the answer in the variable. For example:
Sub NumberOfColumns()
Dim NumOfColumns As Integer
Sheets(
Mon 15 Dec 2008: Automatically marked as resolved.
|
