Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I am trying to create a macro to populate another worksheet. I did m subtotals, but when I do a link from the subtotal page in the ne document, it gives me a specific cell number...I want it to be dynami and find the cell number. For example, on the subtotal page, there are 3 columns and 3 rows fo the totals...and I want to pull the total #1 without specifiying th row "C2204". Is there a code/command that will do a find on a key wor and then use the cell that is to the right or left of it? Sorry so confusing....this is new to me. Thanks much -- luvsun2 ----------------------------------------------------------------------- luvsun27's Profile: http://www.excelforum.com/member.php...fo&userid=3149 View this thread: http://www.excelforum.com/showthread.php?threadid=51173 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Sub FindSubTotal()
Dim rng As Range Set rng = Cells.Find(What:="Subtotal", _ After:=Range("A1"), _ LookIn:=xlFormulas, _ LookAt:=xlPart, _ SearchOrder:=xlByRows, _ SearchDirection:=xlNext, _ MatchCase:=False) If Not rng Is Nothing Then rng.Offset(0, 1).Select Else MsgBox "Subtotal not found" End If End Sub -- Regards, Tom Ogilvy "luvsun27" wrote in message ... I am trying to create a macro to populate another worksheet. I did my subtotals, but when I do a link from the subtotal page in the new document, it gives me a specific cell number...I want it to be dynamic and find the cell number. For example, on the subtotal page, there are 3 columns and 3 rows for the totals...and I want to pull the total #1 without specifiying the row "C2204". Is there a code/command that will do a find on a key word and then use the cell that is to the right or left of it? Sorry so confusing....this is new to me. Thanks much. -- luvsun27 ------------------------------------------------------------------------ luvsun27's Profile: http://www.excelforum.com/member.php...o&userid=31495 View this thread: http://www.excelforum.com/showthread...hreadid=511733 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|