Ransick

New Member
Joined
Aug 29, 2014
Messages
10
I have this table...

feMHyd
feMHyd




And i want to include a macro when click the "SAVE" buttom to do the following:


  • Select the text in (E8:S8);
  • Cut the VALUES only;
  • Paste it in (E10:S10);

As E8:S8 is some kind of input line, next time that want to save the information, the macro shall past the input in the next available line, which it is (E11:S11) and so on...

Can some you guys help me out?
 

Excel Facts

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
Yes.
The paste special, as i just want to cut the values and not all the information, it is not working... and i can not do the exercise of saving it to the next available line.
 
Last edited:
Upvote 0
How about
Code:
Sub CopyValues()
   Range("E" & Rows.Count).End(xlUp).Offset(1).Resize(, 15).Value = Range("E8:S8").Value
   Range("E8:S8").SpecialCells(xlConstants).ClearContents
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,810
Messages
6,121,690
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top