VBA code

eabaker64

New Member
Joined
Jul 1, 2024
Messages
30
Office Version
  1. 365
Platform
  1. Windows
Hi. I have created a user form so an individual can enter a date and enter a comment. When "Press enter to save comments" is pressed, the date goes to cell G51 and the comments go to cell G52. I would like the most current date/comment to be shown in G51/G52, and older comments will be moved down to the next row. What VBA code would I use to do this?
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
eabaker here is a solution to your problem. Just make sure the code is before the user form
VBA Code:
Range("G51:G52").Select
    Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
 
Upvote 0
eabaker here is a solution to your problem. Just make sure the code is before the user form
VBA Code:
Range("G51:G52").Select
    Selection.Insert Shift:=xlDown, CopyOrigin:=xlFormatFromLeftOrAbove
Thank you for that. Works great. One more question: Can you input text from a Userform into a merged cell? Or is there code that can be used to merge the cells once the data has been input...maybe code that does the formatting right before exiting the form.
 
Upvote 0
eabaker Run this code and see if it's close to want you want. If it is a solution to your question than next step would be to fit it into a Userform. Yes you can input text into a merged form. I am going to say you shouldn't merge cells with data in it.

VBA Code:
Sub Program2()
'
    Range("A1:B1").Select
    Selection.Merge
    ActiveCell.FormulaR1C1 = "Now is the time"
    Range("A2").Select
End Sub
 
Upvote 0
Solution
eabaker Run this code and see if it's close to want you want. If it is a solution to your question than next step would be to fit it into a Userform. Yes you can input text into a merged form. I am going to say you shouldn't merge cells with data in it.

VBA Code:
Sub Program2()
'
    Range("A1:B1").Select
    Selection.Merge
    ActiveCell.FormulaR1C1 = "Now is the time"
    Range("A2").Select
End Sub
Thank you!! I think I only have one last question. The code for the user form ends up with text being formatted in merged cells A13:D13 so that it autofits the cell (lots of interesting code there). When text is entered into A13:D13, per your handy solution above, the text that had been there before gets shifted down to the next cell. However, once it is shifted down into the next cell, it loses the format that it had when it was in cell A13:D13. Meaning, it now only shows the standard cell of 15 high instead of the autofit from above. How can I keep the format the same?
 
Upvote 0
eabaker I am going to say there is probably a few different ways to get those cells formatted. Here is mine. Now, notice font name and font size. Adjust those as needed. So if you have any questions, problems or comments, let us know.

VBA Code:
Sub Prog3()
Range("A13:D13").Select
Selection.Insert Shift:=xlDown
Selection.Font.Name = "Aptos Narrow"
Selection.Font.Size = 36
Columns("A:D").Select
    Columns("A:D").EntireColumn.AutoFit
    Rows("13:13").Select
    Rows("13:13").EntireRow.AutoFit
    Range("A13").Select

End Sub
 
Upvote 0

Forum statistics

Threads
1,221,507
Messages
6,160,219
Members
451,631
Latest member
coffiajoseph

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