Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I am trying to write a macro that takes a value in Sheet 1 and finds i in Sheet 2. Then once the value is found in sheet 2, the hyperlin formula in the adjacent right cell is copied over to a specific cell i Sheet 1. I couldn't use the VLOOKUP function because that just carrie over the value, but I need to formula to copy over -- akronpo ----------------------------------------------------------------------- akronpow's Profile: http://www.excelforum.com/member.php...fo&userid=2910 View this thread: http://www.excelforum.com/showthread.php?threadid=48823 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
does this work?
Sub findandcopyhyperlink() Sheets("sheet2").Cells.Find(Range("a1")). _ Offset(, 1).Copy Range("b1") End Sub -- Don Guillett SalesAid Software "akronpow" wrote in message ... I am trying to write a macro that takes a value in Sheet 1 and finds it in Sheet 2. Then once the value is found in sheet 2, the hyperlink formula in the adjacent right cell is copied over to a specific cell in Sheet 1. I couldn't use the VLOOKUP function because that just carries over the value, but I need to formula to copy over. -- akronpow ------------------------------------------------------------------------ akronpow's Profile: http://www.excelforum.com/member.php...o&userid=29100 View this thread: http://www.excelforum.com/showthread...hreadid=488236 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
finding the cell adjacent to the max value in a row with formula | Excel Discussion (Misc queries) | |||
copying/dragging a formula to adjacent cells in Excel | Excel Discussion (Misc queries) | |||
copying adjacent cells with formula | Excel Worksheet Functions | |||
copying data to an adjacent cell | Excel Discussion (Misc queries) | |||
copying formula into non-adjacent cells, EXCEL2003 | Excel Discussion (Misc queries) |