#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default Column number

Is there a quick way to determine the coulmn number, Shortcut?
ie, Column "G" is column 7.

Thanks,
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Column number

=column(g1)

?????

Or just put
=column()
in any cell in column G.

SpaceCamel wrote:

Is there a quick way to determine the coulmn number, Shortcut?
ie, Column "G" is column 7.

Thanks,


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,574
Default Column number

You can have the column letters appear as numbers.
Tools--options--general--R1C1 reference style.

You can also populate the first row of cells with numbers, A1=1, B1, =2,
etc., and freeze that first row. To do this select teh 2nd row, then
Window--Freeze Panes.

Finally, you can use the COLUMN function =COLUMN(D1) returns 4, etc.

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"SpaceCamel" wrote:

Is there a quick way to determine the coulmn number, Shortcut?
ie, Column "G" is column 7.

Thanks,

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 15
Default Column number

Thanks for the suggestions.

I don't want to modify the worksheet.
I was just hoping for a tooltip or statusbar display for quick temporary
reference.


"Dave F" wrote:

You can have the column letters appear as numbers.
Tools--options--general--R1C1 reference style.

You can also populate the first row of cells with numbers, A1=1, B1, =2,
etc., and freeze that first row. To do this select teh 2nd row, then
Window--Freeze Panes.

Finally, you can use the COLUMN function =COLUMN(D1) returns 4, etc.

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"SpaceCamel" wrote:

Is there a quick way to determine the coulmn number, Shortcut?
ie, Column "G" is column 7.

Thanks,

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 947
Default Column number

I was just hoping for a tooltip or statusbar display

One idea...While working on a particular sheet, you could place this code on
that particular sheet module in vba.
It will display the R1C1 address in the status bar.
When you are finished working on the sheet, you could remove it.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.StatusBar = Target.Address(True, True, xlR1C1)
End Sub

--
HTH :)
Dana DeLouis
Windows XP & Office 2003


"SpaceCamel" wrote in message
...
Thanks for the suggestions.

I don't want to modify the worksheet.
I was just hoping for a tooltip or statusbar display for quick temporary
reference.


"Dave F" wrote:

You can have the column letters appear as numbers.
Tools--options--general--R1C1 reference style.

You can also populate the first row of cells with numbers, A1=1, B1, =2,
etc., and freeze that first row. To do this select teh 2nd row, then
Window--Freeze Panes.

Finally, you can use the COLUMN function =COLUMN(D1) returns 4, etc.

Dave
--
A hint to posters: Specific, detailed questions are more likely to be
answered than questions that provide no detail about your problem.


"SpaceCamel" wrote:

Is there a quick way to determine the coulmn number, Shortcut?
ie, Column "G" is column 7.

Thanks,



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
how to get the column number from the corresponding column name denoting initial..??? [email protected] Excel Worksheet Functions 5 September 11th 06 10:17 PM
Finding the closest number in column A and take the value in column B reefguy Excel Worksheet Functions 3 May 5th 06 08:25 PM
Display missing Part Number if Column A does not match column B Erik T Excel Worksheet Functions 2 April 18th 06 12:23 AM
how i write a number on a column A and see that number on letters. Mauricio Excel Worksheet Functions 2 March 12th 06 10:29 PM
Auto number w/ different letter-number combos in same column Colleen B Excel Worksheet Functions 2 February 23rd 05 03:41 PM


All times are GMT +1. The time now is 05:17 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"