A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

i want defination of columns and rows?



 
 
Thread Tools Display Modes
  #1  
Old January 12th, 2009, 05:23 AM posted to microsoft.public.word.tables
table[_2_]
external usenet poster
 
Posts: 1
Default i want defination of columns and rows?

i want defination of columns and rows?
  #2  
Old January 12th, 2009, 07:36 AM posted to microsoft.public.word.tables
Graham Mayor
external usenet poster
 
Posts: 18,297
Default i want defination of columns and rows?

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?



  #3  
Old January 12th, 2009, 04:31 PM posted to microsoft.public.word.tables
Suzanne S. Barnhill
external usenet poster
 
Posts: 31,786
Default i want defination of columns and rows?

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?






  #4  
Old January 13th, 2009, 04:40 AM posted to microsoft.public.word.tables
Doug Robbins - Word MVP
external usenet poster
 
Posts: 8,239
Default i want defination of columns and rows?

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?








  #5  
Old January 13th, 2009, 06:21 AM posted to microsoft.public.word.tables
macropod[_2_]
external usenet poster
 
Posts: 2,402
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?








 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 01:44 AM.


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