View Single Post
  #5   Report Post  
Posted to microsoft.public.word.tables
macropod[_2_] macropod[_2_] is offline
external usenet poster
 
Posts: 2,059
Default i want defination of columns and rows?

Perhaps the OP wants to know what the row/column designations are. In that case, rows have numbers (1-n) and columns have letters
(A-BK). And, if the OP wants to find the address of a particular cell, a macro like the following will do the job:

Sub CellAddressShow()
'This macro displays the address of a table cell on Word's status bar
If Selection.Information(wdWithInTable) = True Then
If Selection.Cells(1).ColumnIndex 26 Then
StatusBar = "Cell Address: " & Chr(64 + Int(Selection.Cells(1).ColumnIndex / 26)) & _
Chr(64 + (Selection.Cells(1).ColumnIndex Mod 26)) & Selection.Cells(1).RowIndex
Else
StatusBar = "Cell Address: " & Chr(64 + Selection.Cells(1).ColumnIndex) & _
Selection.Cells(1).RowIndex
End If
End If
End Sub

--
Cheers
macropod
[MVP - Microsoft Word]


"Doug Robbins - Word MVP" wrote in message ...
But I assumed defination meant definition; maybe it means something else so that the information that I provided did not answer
the question.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Suzanne S. Barnhill" wrote in message ...
And this same question (presumably from the same poster) had already been answered just the day before.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org

"Graham Mayor" wrote in message ...
Is 'defination' a word? What does it mean?
If you mean 'definition' then columns are the parts of a table that go up and down rows are the parts that go across.

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



table wrote:
i want defination of columns and rows?