Macros help

Hopey87

New Member
Joined
Mar 7, 2024
Messages
7
Office Version
  1. 365
Platform
  1. Windows
Hi,

I am trying to make a spreadsheet that will not only lock certain cells but when a button is clicked a new row is added and the previous row then becomes locked.

I want to lock all cells that are grey. Then once the click here button is pressed a new row is added to row 10 then row 11 becomes locked
 

Attachments

  • snip.PNG
    snip.PNG
    23.9 KB · Views: 14

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
Try this on a copy. Assign the macro to your button.

This macro will lock all rows below 10.

VBA Code:
Sub InsertAndLockRow()
    Dim ws As Worksheet
    Dim newRow As Range
    Dim oldRow As Range

    Set ws = ActiveSheet
    ws.Rows(10).Insert Shift:=xlDown
    Set newRow = ws.Rows(10)
    Set oldRow = ws.Rows(11)

    oldRow.Locked = True
    oldRow.FormulaHidden = True

    ws.Protect UserInterfaceOnly:=True, AllowFormattingCells:=True
    newRow.Locked = False
    newRow.Select
End Sub
 
Upvote 0
Try this on a copy. Assign the macro to your button.

This macro will lock all rows below 10.

VBA Code:
Sub InsertAndLockRow()
    Dim ws As Worksheet
    Dim newRow As Range
    Dim oldRow As Range

    Set ws = ActiveSheet
    ws.Rows(10).Insert Shift:=xlDown
    Set newRow = ws.Rows(10)
    Set oldRow = ws.Rows(11)

    oldRow.Locked = True
    oldRow.FormulaHidden = True

    ws.Protect UserInterfaceOnly:=True, AllowFormattingCells:=True
    newRow.Locked = False
    newRow.Select
End Sub
Thank You So much that helped
 
Upvote 0
Try this on a copy. Assign the macro to your button. This macro will lock all rows below 10.
VBA Code:
 Sub InsertAndLockRow() Dim ws As Worksheet Dim newRow As Range Dim oldRow As Range Set ws = ActiveSheet ws.Rows(10).Insert Shift:=xlDown Set newRow = ws.Rows(10) Set oldRow = ws.Rows(11) oldRow.Locked = True oldRow.FormulaHidden = True ws.Protect UserInterfaceOnly:=True, AllowFormattingCells:=True newRow.Locked = False newRow.Select End Sub
Try this on a copy. Assign the macro to your button.

This macro will lock all rows below 10.

VBA Code:
Sub InsertAndLockRow()
    Dim ws As Worksheet
    Dim newRow As Range
    Dim oldRow As Range

    Set ws = ActiveSheet
    ws.Rows(10).Insert Shift:=xlDown
    Set newRow = ws.Rows(10)
    Set oldRow = ws.Rows(11)

    oldRow.Locked = True
    oldRow.FormulaHidden = True

    ws.Protect UserInterfaceOnly:=True, AllowFormattingCells:=True
    newRow.Locked = False
    newRow.Select
End Sub

Ok now i have a new issue i tried to add the top macro with another and it works but when i close out of it an reopen. It says this error.

my macro

VBA Code:
Sub InsertAndLockRow()
    Dim ws As Worksheet
    Dim newRow As Range
    Dim oldRow As Range

    Set ws = ActiveSheet
    ws.Rows(10).Insert Shift:=xlDown
    Set newRow = ws.Rows(10)
    Set oldRow = ws.Rows(11)

    oldRow.Locked = True
    oldRow.FormulaHidden = True

    ws.Protect UserInterfaceOnly:=True, AllowFormattingCells:=True
    newRow.Locked = False
    newRow.Select
   
        ActiveSheet.Unprotect
    Range("A10:E10").Select
    Selection.Font.Bold = False
    Selection.Borders(xlDiagonalDown).LineStyle = xlNone
    Selection.Borders(xlDiagonalUp).LineStyle = xlNone
    With Selection.Borders(xlEdgeLeft)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeTop)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeBottom)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlEdgeRight)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideVertical)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Borders(xlInsideHorizontal)
        .LineStyle = xlContinuous
        .ColorIndex = 0
        .TintAndShade = 0
        .Weight = xlThin
    End With
    With Selection.Interior
        .Pattern = xlNone
        .TintAndShade = 0
        .PatternTintAndShade = 0
    End With
    Range("C10:E10").Select
    With Selection
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .WrapText = False
        .Orientation = 0
        .AddIndent = False
        .IndentLevel = 0
        .ShrinkToFit = False
        .ReadingOrder = xlContext
        .MergeCells = False
    End With
    Selection.Merge
    Rows("10:10").RowHeight = 105
    Range("A10").Select
    ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
        , AllowFormattingCells:=True
End Sub


1710120403092.png
 
Last edited by a moderator:
Upvote 0
Maybe this ...UNTESTED
VBA Code:
Sub InsertAndLockRow()
Dim ws As Worksheet
Dim newRow As Range
Dim oldRow As Range
ActiveSheet.Unprotect

Set ws = ActiveSheet
ws.Rows(10).Insert Shift:=xlDown
Set newRow = ws.Rows(10)
Set oldRow = ws.Rows(11)
oldRow.Locked = True
oldRow.FormulaHidden = True
newRow.Locked = False
Range("A10:E10").Font.Bold = False
    With Range("A10:E10").Borders
        .LineStyle = xlContinuous
        .Weight = xlThin
    End With
    With Range("A10:E10").Interior
        .Pattern = xlNone
    End With
    With Range("C10:E10")
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .ReadingOrder = xlContext
    End With
Range("C10:E10").Merge
Rows("10:10").RowHeight = 105
Range("A10").Select
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
, AllowFormattingCells:=True
End Sub
 
Upvote 0
Solution
Maybe this ...UNTESTED
VBA Code:
Sub InsertAndLockRow()
Dim ws As Worksheet
Dim newRow As Range
Dim oldRow As Range
ActiveSheet.Unprotect

Set ws = ActiveSheet
ws.Rows(10).Insert Shift:=xlDown
Set newRow = ws.Rows(10)
Set oldRow = ws.Rows(11)
oldRow.Locked = True
oldRow.FormulaHidden = True
newRow.Locked = False
Range("A10:E10").Font.Bold = False
    With Range("A10:E10").Borders
        .LineStyle = xlContinuous
        .Weight = xlThin
    End With
    With Range("A10:E10").Interior
        .Pattern = xlNone
    End With
    With Range("C10:E10")
        .HorizontalAlignment = xlCenter
        .VerticalAlignment = xlCenter
        .ReadingOrder = xlContext
    End With
Range("C10:E10").Merge
Rows("10:10").RowHeight = 105
Range("A10").Select
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
, AllowFormattingCells:=True
End Sub
That worked perfectly thank you so much
 
Upvote 0
That worked perfectly thank you so much
The marked solution has been changed accordingly. In your future questions, please mark the post as the solution that actually answered your question, instead of your feedback message as it will help future readers. No further action is required for this thread.

Also, when posting vba code in the forum, please use the available code tags. It makes your code much easier to read/debug & copy. My signature block below has more details. I have added the tags to your code in post #4 for you this time. 😊
 
Upvote 0

Forum statistics

Threads
1,215,079
Messages
6,122,998
Members
449,092
Latest member
masterms

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