View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
kramer31 kramer31 is offline
external usenet poster
 
Posts: 7
Default VBA Column Conversion

Is there a function that converts integers (as used in programming
loops) to excel colums letters?

For instance:

Worksheet.Cells(1,1).Formula = Sum(HypotheticalFunc(2) & "1:" &
HypotheticalFunc(26) & "1")

Should place the Formula "=Sum("B1:Z1") into the cell A1

If not, I'll write it, but it seems as if it should exist.