From: Ross from Orlando on 8 Jan 2010 13:04 In Word 2007, is there a quick way to determine what table cell you the insertion point is in? I have a vague recolleciton of a feature to do this in earlier versions of Word. Thanks, Ross
From: Suzanne S. Barnhill on 8 Jan 2010 14:33 See if either of the macros at http://word.mvps.org/FAQs/AppErrors/SumAboveIncorrect.htm and http://gregmaxey.mvps.org/Table_Cell_Data.htm will work in Word 2007. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA http://word.mvps.org "Ross from Orlando" <rossp(a)rosspayne.net> wrote in message news:efe3a4eb-2f63-4060-b7ad-86471be0dcca(a)j24g2000yqa.googlegroups.com... > In Word 2007, is there a quick way to determine what table cell you > the insertion point is in? I have a vague recolleciton of a feature to > do this in earlier versions of Word. Thanks, > > Ross >
From: Ross from Orlando on 8 Jan 2010 17:55 On Jan 8, 2:33 pm, "Suzanne S. Barnhill" <sbarnh...(a)mvps.org> wrote: > See if either of the macros athttp://word.mvps.org/FAQs/AppErrors/SumAboveIncorrect.htmandhttp://gregmaxey.mvps.org/Table_Cell_Data.htmwill work in Word 2007. > > -- > Suzanne S. Barnhill > Microsoft MVP (Word) > Words into Type > Fairhope, Alabama USAhttp://word.mvps.org > > "Ross from Orlando" <ro...(a)rosspayne.net> wrote in messagenews:efe3a4eb-2f63-4060-b7ad-86471be0dcca(a)j24g2000yqa.googlegroups.com... > > > > > In Word 2007, is there a quick way to determine what table cell you > > the insertion point is in? I have a vague recolleciton of a feature to > > do this in earlier versions of Word. Thanks, > > > Ross- Hide quoted text - > > - Show quoted text - Thanks, Susan, but it does not work in Word 2007. I think that sometimes creating an Excel spreadsheet and pasting into Word is easier.
From: Suzanne S. Barnhill on 8 Jan 2010 18:46 That's interesting because I have the macro from http://word.mvps.org/FAQs/AppErrors/SumAboveIncorrect.htm installed in Word 2007, and it works as advertised. -- Suzanne S. Barnhill Microsoft MVP (Word) Words into Type Fairhope, Alabama USA http://word.mvps.org "Ross from Orlando" <rossp(a)rosspayne.net> wrote in message news:bb177bde-085d-4e04-b512-a923c192f266(a)b2g2000yqi.googlegroups.com... On Jan 8, 2:33 pm, "Suzanne S. Barnhill" <sbarnh...(a)mvps.org> wrote: > See if either of the macros > athttp://word.mvps.org/FAQs/AppErrors/SumAboveIncorrect.htmandhttp://gregmaxey.mvps.org/Table_Cell_Data.htmwill > work in Word 2007. > > -- > Suzanne S. Barnhill > Microsoft MVP (Word) > Words into Type > Fairhope, Alabama USAhttp://word.mvps.org > > "Ross from Orlando" <ro...(a)rosspayne.net> wrote in > messagenews:efe3a4eb-2f63-4060-b7ad-86471be0dcca(a)j24g2000yqa.googlegroups.com... > > > > > In Word 2007, is there a quick way to determine what table cell you > > the insertion point is in? I have a vague recolleciton of a feature to > > do this in earlier versions of Word. Thanks, > > > Ross- Hide quoted text - > > - Show quoted text - Thanks, Susan, but it does not work in Word 2007. I think that sometimes creating an Excel spreadsheet and pasting into Word is easier.
From: macropod on 8 Jan 2010 22:36 Hi Ross, The following macro works in Word 2007 too: Sub CellAddress() '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 [Microsoft MVP - Word] "Ross from Orlando" <rossp(a)rosspayne.net> wrote in message news:efe3a4eb-2f63-4060-b7ad-86471be0dcca(a)j24g2000yqa.googlegroups.com... > In Word 2007, is there a quick way to determine what table cell you > the insertion point is in? I have a vague recolleciton of a feature to > do this in earlier versions of Word. Thanks, > > Ross
|
Next
|
Last
Pages: 1 2 Prev: Full Screen and Status Bar in Word 2007 Next: need suggestion for calendar |