Forum

Prevent row and col...
 
Notifications
Clear all

Prevent row and column insert and delete and prevent clear contents

3 Posts
2 Users
0 Reactions
251 Views
(@swallack202)
Posts: 77
Estimable Member
Topic starter
 

Hi -

I have a worksheet with a pivot table that starts in cell W1. It's important that the table does not move to a different column or row, because the specific cell address "W2" is referenced in multiple formulas. The table is located in hidden cells. 

I need to prevent the user from inserting or deleting rows or columns through any mechanism. Here is what I have so far, but I think I must be missing something my more "creative" users may attempt.

Also, I can't seem to disable the "Clear Contents" option. 

Any thoughts?

Sub AllowInsertDeleteRowCols(bSwitch As Boolean)

  Dim ctrl As CommandBarControl

  ' Row delete
  For Each ctrl In Application.CommandBars.FindControls(ID:=293)
    ctrl.Enabled = bSwitch
  Next ctrl

  ' Column delete
  For Each ctrl In Application.CommandBars.FindControls(ID:=294)
    ctrl.Enabled = bSwitch
  Next ctrl

  ' Row and column insert
  For Each ctrl In Application.CommandBars.FindControls(ID:=3183)
    ctrl.Enabled = bSwitch
  Next ctrl

  ' Cell delete
  For Each ctrl In Application.CommandBars.FindControls(ID:=292)
    ctrl.Enabled = bSwitch
  Next ctrl

  ' Cell insert
  For Each ctrl In Application.CommandBars.FindControls(ID:=3181)
    ctrl.Enabled = bSwitch
  Next ctrl

  ' Clear contents
  For Each ctrl In Application.CommandBars.FindControls(ID:=873)
    ctrl.Enabled = bSwitch
  Next ctrl

  If bSwitch Then
    Application.OnKey "{DELETE}"
  Else
    Application.OnKey "{DELETE}", ""
  End If

End Sub


Sub DisableActions

  Call AllowInsertDeleteRowCols(False)

End Sub


Sub EnableActions

  Call AllowInsertDeleteRowCols(True)

End Sub

  

 
Posted : 14/05/2022 8:28 pm
(@debaser)
Posts: 836
Member Moderator
 

Unless your formulas use INDIRECT, they will adjust automatically if rows/columns are inserted, so I'm not really sure why you need to do this at all?

 
Posted : 17/05/2022 3:47 am
(@swallack202)
Posts: 77
Estimable Member
Topic starter
 

Well, that's an interesting point. Thanks!

 
Posted : 17/05/2022 4:30 pm
Share: