Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Trying to come up with a VBA procedure to copy a cell formula exact into the clipboard that I can paste (cntrl+V) in any other desired cells without the references changing. That way, I can assign the keys Shift+Ctrl+E to the procedure for a short cut. I know about the $ but there are too many formulas to edit. I now do it manually as follows: On the desired cell, F2 Ctrl + Shift + Home Ctrl + C Esc Any ideas? mikeburg -- mikeburg ------------------------------------------------------------------------ mikeburg's Profile: http://www.excelforum.com/member.php...o&userid=24581 View this thread: http://www.excelforum.com/showthread...hreadid=482978 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"mikeburg" wrote in
message ... Trying to come up with a VBA procedure to copy a cell formula exact into the clipboard that I can paste (cntrl+V) in any other desired cells without the references changing. That way, I can assign the keys Shift+Ctrl+E to the procedure for a short cut. I know about the $ but there are too many formulas to edit. I now do it manually as follows: On the desired cell, F2 Ctrl + Shift + Home Ctrl + C Esc Any ideas? mikeburg Dim A as String A = [B50].Formula Ciao Bruno |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can change from relative to absolute en masse using VBA
Sub Absolute() Dim Cell As Range For Each Cell In Selection If Cell.HasFormula Then Cell.Formula = Application.ConvertFormula(Cell.Formula, _ xlA1, xlA1, xlAbsolute) End If Next End Sub Gord Dibben Excel MVP . I know about the $ but there are too many formulas to edit. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Ciao Bruno's vba code works great. But how do I get the contents of variable A into the clipboard? Thanks a million, mikeburg -- mikeburg ------------------------------------------------------------------------ mikeburg's Profile: http://www.excelforum.com/member.php...o&userid=24581 View this thread: http://www.excelforum.com/showthread...hreadid=482978 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
copy an exact formula without changing cell reference | Excel Worksheet Functions | |||
Changing References to Formulas | Excel Discussion (Misc queries) | |||
copying formulas and changing cell references | Excel Discussion (Misc queries) | |||
Copy and Replicate exact formulas | Excel Worksheet Functions | |||
Changing Cell References in Formulas | Excel Worksheet Functions |