Calculating the column

  • Thread starter Thread starter NO
  • Start date Start date
N

NO

Hi,
Sorry to ask but...
I want to calculate the column for a vert.search function.
Say a want to start the search at column (2*3) [=6], how can I transform the
"6" in "F"?
Thanks very much in advance.

Fred
 
Is this for VBA?

If yes, you don't need to change the number to letters.

activesheet.columns(6)
or
activesheet.columns(2*3)
would work fine.
Hi,
Sorry to ask but...
I want to calculate the column for a vert.search function.
Say a want to start the search at column (2*3) [=6], how can I transform the
"6" in "F"?
Thanks very much in advance.

Fred
 
Back
Top