Clicking data in one sheet..Saving all those clicked in another.
Solved/Closed
Related:
- Clicking data in one sheet..Saving all those clicked in another.
- Transfer data from one excel worksheet to another automatically - Guide
- Mouse not clicking where pointer is - Guide
- Power saving mode in computer - Guide
- Mouse clicking on its own - Guide
- Little alchemy cheat sheet - Guide
2 replies
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
547
Sep 3, 2015 at 11:21 AM
Sep 3, 2015 at 11:21 AM
Hi Sram,
How about this:
Hold CTRL while clicking on the numbers to save. Once done, right-click to copy and paste them in the desired sheet.
Best regards,
Trowa
How about this:
Hold CTRL while clicking on the numbers to save. Once done, right-click to copy and paste them in the desired sheet.
Best regards,
Trowa
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
547
Sep 7, 2015 at 11:17 AM
Sep 7, 2015 at 11:17 AM
Hi Sram,
In the code below, the destination sheet is called Sheet2 and the values will be pasted in the A column. Look up Sheet2 and A to change them to suit your needs:
To implement the code: right-click the sheets tab you want this to work for (so not Sheet2) and select view code. Paste the code in the big white field.
Best regards,
Trowa
In the code below, the destination sheet is called Sheet2 and the values will be pasted in the A column. Look up Sheet2 and A to change them to suit your needs:
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean) Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1, 0).Value = Target.Value End Sub
To implement the code: right-click the sheets tab you want this to work for (so not Sheet2) and select view code. Paste the code in the big white field.
Best regards,
Trowa
Sep 3, 2015 at 01:53 PM
I click on one.. It goes and saves in new sheet.
I click another.. I want that to be pasted right below in the new sheet.
I'm looking to create an interface. Not just regular data copy paste.
Thanks for your reply, though.
I appreciate any further useful inputs!