Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default HOW IS COLUMN "K" REFERENCED ON THE CURRENT ROW IN THE GOTO COMMAN

When I click edit then goto the enter Column "K" without any row number, I
get an error message that it not a valid reference or defined name. I want
to ultimately set up a macro that will go to the Column "K" and insert a
"check mark" their. but i want to be able to do it after I have filled in
some of the info on columns A through J. Ultimately I want the cell to have
yellow background.
Can anybody help me with what i thought was a simple matter.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,316
Default HOW IS COLUMN "K" REFERENCED ON THE CURRENT ROW IN THE GOTO COMMAN

You could name the first cell in column K and then use the range name to goto
the cell.

Move to the cell you want to name and from the menu click INSERT/NAME/DEFINE

Give a name like CheckMark or something and then use the F5 goto key and
either enter the named range or select from the list of displayed names
directly above the reference field.
--
Kevin Backmann


"mbnspect" wrote:

When I click edit then goto the enter Column "K" without any row number, I
get an error message that it not a valid reference or defined name. I want
to ultimately set up a macro that will go to the Column "K" and insert a
"check mark" their. but i want to be able to do it after I have filled in
some of the info on columns A through J. Ultimately I want the cell to have
yellow background.
Can anybody help me with what i thought was a simple matter.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default HOW IS COLUMN "K" REFERENCED ON THE CURRENT ROW IN THE GOTO COMMAN

Try EditGo To K:K which selects all of column K

As far as the macro goes, no help until we know a lot more details.


Gord Dibben MS Excel MVP

On Tue, 8 Jan 2008 13:38:03 -0800, mbnspect
wrote:

When I click edit then goto the enter Column "K" without any row number, I
get an error message that it not a valid reference or defined name. I want
to ultimately set up a macro that will go to the Column "K" and insert a
"check mark" their. but i want to be able to do it after I have filled in
some of the info on columns A through J. Ultimately I want the cell to have
yellow background.
Can anybody help me with what i thought was a simple matter.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8
Default HOW IS COLUMN "K" REFERENCED ON THE CURRENT ROW IN THE GOTO CO

Thank you that helps but is there a way to do EditGo To K (but only the K
cell of that particular row that my cursor is currently in without having to
number the row?)

"Gord Dibben" wrote:

Try EditGo To K:K which selects all of column K

As far as the macro goes, no help until we know a lot more details.


Gord Dibben MS Excel MVP

On Tue, 8 Jan 2008 13:38:03 -0800, mbnspect
wrote:

When I click edit then goto the enter Column "K" without any row number, I
get an error message that it not a valid reference or defined name. I want
to ultimately set up a macro that will go to the Column "K" and insert a
"check mark" their. but i want to be able to do it after I have filled in
some of the info on columns A through J. Ultimately I want the cell to have
yellow background.
Can anybody help me with what i thought was a simple matter.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default HOW IS COLUMN "K" REFERENCED ON THE CURRENT ROW IN THE GOTO CO

In a macro..............

Sub foo()
Dim myrow As Long
myrow = ActiveCell.Row
Range("K" & myrow).Select
End Sub


Gord

On Thu, 10 Jan 2008 13:25:01 -0800, mbnspect
wrote:

Thank you that helps but is there a way to do EditGo To K (but only the K
cell of that particular row that my cursor is currently in without having to
number the row?)

"Gord Dibben" wrote:

Try EditGo To K:K which selects all of column K

As far as the macro goes, no help until we know a lot more details.


Gord Dibben MS Excel MVP

On Tue, 8 Jan 2008 13:38:03 -0800, mbnspect
wrote:

When I click edit then goto the enter Column "K" without any row number, I
get an error message that it not a valid reference or defined name. I want
to ultimately set up a macro that will go to the Column "K" and insert a
"check mark" their. but i want to be able to do it after I have filled in
some of the info on columns A through J. Ultimately I want the cell to have
yellow background.
Can anybody help me with what i thought was a simple matter.






  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default HOW IS COLUMN "K" REFERENCED ON THE CURRENT ROW IN THE GOTO COMMAN

You can use:

K:K

You could use:

With ActiveSheet
.Range("K1").EntireColumn.Interior.ColorIndex = 3 'whatever
.Range("K:K").EntireColumn.Interior.ColorIndex = 4
.Range("K:k").Interior.ColorIndex = 5
.Columns("K:K").EntireColumn.Interior.ColorIndex = 6
.Columns("K:K").Interior.ColorIndex = 7
.Columns(11).EntireColumn.Interior.ColorIndex = 8
End With

6 was a shade of yellow with my color scheme.


mbnspect wrote:

When I click edit then goto the enter Column "K" without any row number, I
get an error message that it not a valid reference or defined name. I want
to ultimately set up a macro that will go to the Column "K" and insert a
"check mark" their. but i want to be able to do it after I have filled in
some of the info on columns A through J. Ultimately I want the cell to have
yellow background.
Can anybody help me with what i thought was a simple matter.


--

Dave Peterson
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
Chg 1 "Last, First Mid" column to 3 "First", "Middle", "Last" colu JBird11002 Excel Discussion (Misc queries) 4 August 15th 08 06:31 PM
How do I change the column heading in Excel to display "A" "B" "C Thai New Users to Excel 1 November 30th 07 08:06 PM
Question on "On Error GoTo skip" dan Excel Discussion (Misc queries) 2 July 1st 07 10:48 PM
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next BCB New Users to Excel 7 May 13th 06 10:02 PM
=IF((TODAY()-B8)30, "Overdue", "Current"), Kev Excel Discussion (Misc queries) 3 December 16th 05 08:15 PM


All times are GMT +1. The time now is 04:36 PM.

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"