View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
famdamly
 
Posts: n/a
Default This is a little off


I have this macro in my worksheet.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Target.Column 61 Then GJN


This is the macro that runs when the user selects a cell.

Sub GJN()
Set rng = Worksheets("sheet1").Cells.End(xlUp)(1)
'(Rows.Count,1)
With Worksheets("Sheet1")

rng.Offset(10, 23).Value = .Range("R" & ActiveCell.Row, Range("C61"))
End With

End Sub


The user will be selecting from a list that is updated and sorted as
they enter the screen, therefore the data in those cells is never the
same. That is why I need to pluck the number from column 61 on the row
they select.
When they select a cell they will be taken to a new screen with the
case relevant data in front of them. The case relevant data is
contigent on a number that is in cell w12 This is where I need this
plucked number to be.

I'm sure I'm doing everything extremely unconventionally as it is just
my nature. So I hope it's not too confusing.


--
famdamly
------------------------------------------------------------------------
famdamly's Profile: http://www.excelforum.com/member.php...o&userid=29382
View this thread: http://www.excelforum.com/showthread...hreadid=519240