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

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
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,215,053
Messages
6,122,888
Members
449,097
Latest member
dbomb1414

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