Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 110
Default Row number and Column number

I would like to know how to display the row number and column number of the
currently highlighted cell.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,298
Default Row number and Column number

you could use the row() and column() function.
so maybe use the selection change event to show this is?

right click the sheet tab and select View Code from the popup and paste in
this code ...

Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Application.StatusBar = Target.Address
MsgBox Target.Address, , "you selected..."
End Sub

delete the ksgbox line when it gets too irritating ;)






"Philosophaie" wrote:

I would like to know how to display the row number and column number of the
currently highlighted cell.

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 22,906
Default Row number and Column number

Look at NameBox when selecting a cell.


Gord Dibben MS Excel MVP

On Thu, 8 Oct 2009 02:20:01 -0700, Philosophaie
wrote:

I would like to know how to display the row number and column number of the
currently highlighted cell.


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
Use a Number times an X anh have a column with that number of x's Mathew Excel Discussion (Misc queries) 2 December 5th 08 06:16 PM
How do I count the number of each number in a column? Shelby Excel Discussion (Misc queries) 6 September 27th 08 08:48 PM
row number and column number of cell Pierre Laporte Excel Programming 5 October 11th 06 08:44 PM
how i write a number on a column A and see that number on letters. Mauricio Excel Worksheet Functions 2 March 12th 06 09:29 PM
Auto number w/ different letter-number combos in same column Colleen B Excel Worksheet Functions 2 February 23rd 05 02:41 PM


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

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

About Us

"It's about Microsoft Excel"