Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I want to record a Macro that when clicked on, will run a formula and
populate the answer into the same specific cell every time it's clicked, no matter what cell my cursor is active in at the moment I click the macro. Is there a way to do this? Right now I have the macro performing the calculation properly, but it populates the answer into whatever cell I happen to be active in when I click the macro. I want it to always populate the answer into one specific cell. Any help would be greatly appreciated. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
it would help if you post your code. Regards FSt1 "Matt" wrote: I want to record a Macro that when clicked on, will run a formula and populate the answer into the same specific cell every time it's clicked, no matter what cell my cursor is active in at the moment I click the macro. Is there a way to do this? Right now I have the macro performing the calculation properly, but it populates the answer into whatever cell I happen to be active in when I click the macro. I want it to always populate the answer into one specific cell. Any help would be greatly appreciated. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Sub SHARECALCA()
' ' SHARECALCA Macro ' Macro recorded 3/17/2009 by Matthew J. O'Neill ' ' ActiveCell.FormulaR1C1 = "=MROUND((R6C3*100/R6C4),1000)" Range("B6").Select Selection.Copy Range("B6").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False End Sub "FSt1" wrote: hi it would help if you post your code. Regards FSt1 "Matt" wrote: I want to record a Macro that when clicked on, will run a formula and populate the answer into the same specific cell every time it's clicked, no matter what cell my cursor is active in at the moment I click the macro. Is there a way to do this? Right now I have the macro performing the calculation properly, but it populates the answer into whatever cell I happen to be active in when I click the macro. I want it to always populate the answer into one specific cell. Any help would be greatly appreciated. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
right now you formula is keying on C6 and D6 and pasting the results in B6. is that what you want???? Regards FSt1 "Matt" wrote: Sub SHARECALCA() ' ' SHARECALCA Macro ' Macro recorded 3/17/2009 by Matthew J. O'Neill ' ' ActiveCell.FormulaR1C1 = "=MROUND((R6C3*100/R6C4),1000)" Range("B6").Select Selection.Copy Range("B6").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False End Sub "FSt1" wrote: hi it would help if you post your code. Regards FSt1 "Matt" wrote: I want to record a Macro that when clicked on, will run a formula and populate the answer into the same specific cell every time it's clicked, no matter what cell my cursor is active in at the moment I click the macro. Is there a way to do this? Right now I have the macro performing the calculation properly, but it populates the answer into whatever cell I happen to be active in when I click the macro. I want it to always populate the answer into one specific cell. Any help would be greatly appreciated. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Not allowing to continu unless a specific cell has specific answer | Excel Discussion (Misc queries) | |||
Populate one cell with specific figure | Excel Discussion (Misc queries) | |||
Populate one cell with specific figure | Excel Discussion (Misc queries) | |||
Use a code to populate a cell with a specific value | Excel Worksheet Functions | |||
Cells populate on specific dates | Excel Worksheet Functions |