VBA lock row depending on content cell and amendments to created macro

Eline

New Member
Joined
Sep 30, 2013
Messages
20
I'm very new to writing Macros and have tried to find the answer online, but I’m stuck! So really hope someone can help me?</SPAN>
On a regular basis, data is extracted into an excel spreadsheet. It will contain a set number of columns (A-L), but the amount of rows will differ each time it is run. I’m creating a macro which needs to be run for each newly extracted spreadsheet to make it user friendly (therefore all steps required need to be contained within this macro!). All these steps need to end in the last row that is populated (cells in column A-E, the others (F-L) will need to be manually populated by the users after the macro is run – these cells need to be blank after the macro is run before cells are populated)</SPAN>
I’ve written a macro (see below), but this is not quite working the way it should, and am also missing a couple of steps as I’m really unsure of how to write them? Here are the 4 queries I’m struggling with:</SPAN>
1) The spreadsheet needs to have a drop down list in column F (options that can be selected are "Compliant" or "Not Compliant"). I'd like the following to happen when each option is selected:

If “Compliant” is selected in column F (starting in F2, ending in the last populated cell in column (A-E));
* Columns G and H need to be populated (so a note saying "Please populate" will need to be added to the cells (ideally in red so it stands out)). So if cell in F2 is "Compliant", G2 and H2 need to read "Please populate". These cells need to be open for editing. (Formula in the cell needs to be hidden from user)
* Columns I, J, K, L do not need to be populated (so a note saying N/A need to be added to the cells, and the cells need to be locked). So if cell in F2 is "Not Compliant", I2, J2, K2, L2 need to read "N/A", and be locked for editing (cell cannot be populated, or pasted into). (Formula in the cell needs to be hidden from user)</SPAN>

If “Not Compliant” is selected;
* The above needs to be reversed</SPAN>
2) Column E of the extract will contain one of 3 words; “Heading”, “Requirement” or “Information”. If the cell in column E (starting in E2, ending in the last populated cell in column E) contains “Heading”, I need it to lock the entire row for this cell – the row cannot be edited, populated or pasted into. I also do not want the drop-down lists to appear in this row.</SPAN>
3) If someone tries to populate the locked cells (from question 1 and 2), I need a pop up message box to appear, saying “This section does not need to be populated” and an OK button to close the message box.</SPAN>
4) How would I best save this Macro so that I can run it on the newly extracted data each time it is run (it being a new spreadsheet each time)? (This Workbook, New Workbook or Personal Macro Workbook? And perhaps create a macro button?)</SPAN>
Here’s the macro I’ve written so far. Would very much appreciate your help in amending the steps that aren’t working quite right and help on how to write the missing steps. Thank you very much in advance! Regards, Eline</SPAN>

Sub DOORS_Template()
'
' DOORS_Template Macro
' This macro protects new Doors extracted data

'Freezes panes below header
Range("A2").Select
ActiveWindow.FreezePanes = True

'Unlocks sheet, then locks Header row, and columns A, B, C, D, E
Cells.Select
Selection.Locked = False
Selection.FormulaHidden = False
Range("1:1,A:A,B:B,C:C,D:D,E:E").Select
Range("E1").Activate
Selection.Locked = True
Selection.FormulaHidden = False


'Adds in Validation Lists for column F "Compliance Status" and K "Impact Assessment"
Range("AA2").Select
ActiveCell.FormulaR1C1 = "Compliant"
Range("AA3").Select
ActiveCell.FormulaR1C1 = "Not Compliant"
Range("AA5").Select
ActiveCell.FormulaR1C1 = "High"
Range("AA6").Select
ActiveCell.FormulaR1C1 = "Medium"
Range("AA7").Select
ActiveCell.FormulaR1C1 = "Low"
Range("AA8").Select

'"Compliance Status" validation list column F
Range(Range("F2"), Range("F2").End(xlDown)).Select
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="=$AA$2:$AA$3"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With

'"Impact Assessment" validation list column K
Range(Range("K2"), Range("K2").End(xlDown)).Select
With Selection.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, Operator:= _
xlBetween, Formula1:="=$AA$5:$AA$7"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With


'Adds in "Compliant" rule; If compliant in column F, columns G,H need to be populated, and I,J,K,L are N/A.
Dim LR As Long
LR = Range("F" & Rows.Count).End(xlDown).Row

Range("G2:H" & LR).FormulaR1C1 = "=IF(RC6=""Compliant"", ""Please Populate"", """")"
With Range("G2:H" & LR).Validation
.Delete
.Add Type:=xlValidateCustom, AlertStyle:=xlValidAlertStop, Operator:=xlBetween, Formula1:="=$F2=""Compliant"""
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = "Please leave blank"
.ShowInput = False
.ShowError = True
End With


'Adds in "Not Compliant" rule; If not compliant in column F, columns I,J,K,L need to be populated, and G,H are N/A

Range("I2:L" & LR).FormulaR1C1 = "=IF(RC6=""Not Compliant"", ""Please Populate"", """")"
With Range("I2:L" & LR).Validation
.Delete
.Add Type:=xlValidateCustom, AlertStyle:=xlValidAlertStop, Operator:=xlBetween, Formula1:="=$F2=""Not Compliant"""
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = "Please leave blank"
.ShowInput = False
.ShowError = True
End With
'Pop up message box when locked cell is being population (???)
'Lock row if cell in column E = "Heading" (???)
'Steps to end in last populated cell column A-E (???)

'Protecting sheet
Cells.Select
ActiveSheet.Protect DrawingObjects:=True, Contents:=True, Scenarios:=True _
, AllowInsertingHyperlinks:=True, AllowFiltering:=True
End Sub
 
OK, you can download my version here:
https://www.dropbox.com/s/ijrjoe55a8rx2lc/DOORS%20Template.xls

I have totally disabled your macro, and everything works through a change macro on the sheet module.

I don't know how the import is done, but if the data for the import is copied into columns A:E then everything should work OK.

JJust check it manually first to see if it does do what you want.
 
Upvote 0

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
Thank you Sijpie, your macro looks so much better than the one I had and seems a great idea to have it all set up as a change macro. I’ve had a go with it, but it’s not doing all the things I need it to do, so I’m not sure where it is going wrong?</SPAN>
Here’s what needs to happen:</SPAN>

  • Template spreadsheet need to ask for Save As option on opening </SPAN>– works perfect</SPAN></SPAN>
  • Extracted data is manually imported by me into the template (in the Save As copy); this is a copy and paste into columns A-E only.</SPAN>
  • Row 1 (headings) and columns A-E then need to be locked for editing – </SPAN>doesn’t happen at the moment?</SPAN></SPAN>
  • If the cell in column E says “Heading”, this entire row needs to be locked for editing – </SPAN>doesn’t happen at the moment?</SPAN></SPAN>
  • The user then gets sent this spreadsheet and will select one of the 3 options in drop down list in column F: “Compliant”, “Not Compliant” or ”N/A” (the rules for these are as explained previously - </SPAN>works perfectly!</SPAN>).</SPAN>
  • Additionally, if “ Not Compliant” is selected, column K needs to display the drop down validation list of “High”, “Medium”, and “Low” – </SPAN>doesn’t happen at the moment?</SPAN></SPAN>

Would you be able to advise on how to make these last couple of things work also?</SPAN>
Thank you so so much for all your help</SPAN>
 
Upvote 0
Apologies, drop down in Column K also works. :) yay!
Therefore the only two things that don't seem to work are the locking of columns A-E after copy & paste export and locking the row if cell in column E says "Heading"...
 
Upvote 0
I'll see when I have some time to look at it.
 
Upvote 0
Sorry it took a while.

Anyway, I forgot one little line in the onChange code :banghead to lock the sheet again...

Here it is right at the bottom:

<font face=Courier New><SPAN style="color:#00007F">Private</SPAN> <SPAN style="color:#00007F">Sub</SPAN> Worksheet_Change(<SPAN style="color:#00007F">ByVal</SPAN> Target <SPAN style="color:#00007F">As</SPAN> Range)<br>    <SPAN style="color:#00007F">Dim</SPAN> rC <SPAN style="color:#00007F">As</SPAN> Range<br>    <br>    <SPAN style="color:#00007F">If</SPAN> <SPAN style="color:#00007F">Not</SPAN> Intersect(Target, Columns("F")) <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN><br>        <SPAN style="color:#007F00">' >>>> change has been made in column F</SPAN><br>        <SPAN style="color:#007F00">' take account of multiple cell change, for instance copy down, import or so</SPAN><br>        UnprotectSheet Me<br>        Application.ScreenUpdating = <SPAN style="color:#00007F">False</SPAN><br>        <SPAN style="color:#00007F">For</SPAN> <SPAN style="color:#00007F">Each</SPAN> rC <SPAN style="color:#00007F">In</SPAN> Intersect(Target, Columns("F")).Cells<br><SPAN style="color:#007F00">'            If rC.Column = 6 Then ' only for cells in F</SPAN><br>                <SPAN style="color:#00007F">Select</SPAN> <SPAN style="color:#00007F">Case</SPAN> rC.Value<br>                    <SPAN style="color:#00007F">Case</SPAN> "Compliant"<br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 1).Resize(1, 2) <SPAN style="color:#007F00">' Gx:Hx</SPAN><br>                            .ClearContents<br>                            .Locked = <SPAN style="color:#00007F">False</SPAN><br>                            .HorizontalAlignment = xlGeneral<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 3).Resize(1, 5) <SPAN style="color:#007F00">' Ix:Mx</SPAN><br>                            .Value = "N/A"<br>                            .Locked = <SPAN style="color:#00007F">True</SPAN><br>                            .HorizontalAlignment = xlCenter<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                    <br>                    <SPAN style="color:#00007F">Case</SPAN> "Not Compliant"<br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 1).Resize(1, 2) <SPAN style="color:#007F00">' Gx:Hx</SPAN><br>                            .Value = "N/A"<br>                            .Locked = <SPAN style="color:#00007F">True</SPAN><br>                            .HorizontalAlignment = xlCenter<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 7)    <SPAN style="color:#007F00">' Mx</SPAN><br>                            .Value = "N/A"<br>                            .Locked = <SPAN style="color:#00007F">True</SPAN><br>                            .HorizontalAlignment = xlCenter<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 3).Resize(1, 4) <SPAN style="color:#007F00">' Ix:Lx</SPAN><br>                            .ClearContents<br>                            .Locked = <SPAN style="color:#00007F">False</SPAN><br>                            .HorizontalAlignment = xlGeneral<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                    <br>                    <SPAN style="color:#00007F">Case</SPAN> "N/A"<br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 7)    <SPAN style="color:#007F00">' Mx</SPAN><br>                            .ClearContents<br>                            .Locked = <SPAN style="color:#00007F">False</SPAN><br>                            .HorizontalAlignment = xlGeneral<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 1).Resize(1, 6) <SPAN style="color:#007F00">' Gx:Lx</SPAN><br>                            .Value = "N/A"<br>                            .Locked = <SPAN style="color:#00007F">True</SPAN><br>                            .HorizontalAlignment = xlCenter<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                    <br>                    <SPAN style="color:#00007F">Case</SPAN> vbNullString       <SPAN style="color:#007F00">' empty</SPAN><br>                        <SPAN style="color:#00007F">With</SPAN> rC.Offset(0, 1).Resize(1, 7) <SPAN style="color:#007F00">' Gx:Lx</SPAN><br>                            .ClearContents<br>                            .Locked = <SPAN style="color:#00007F">False</SPAN><br>                            .HorizontalAlignment = xlGeneral<br>                        <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">With</SPAN><br>                <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Select</SPAN><br>          <SPAN style="color:#007F00">'  End If</SPAN><br>        <SPAN style="color:#00007F">Next</SPAN> rC<br>        Application.ScreenUpdating = <SPAN style="color:#00007F">True</SPAN><br>        <SPAN style="color:#007F00">' <<<< End changes to column F</SPAN><br>    <br>    <SPAN style="color:#00007F">ElseIf</SPAN> <SPAN style="color:#00007F">Not</SPAN> Intersect(Target, Columns("E")) <SPAN style="color:#00007F">Is</SPAN> <SPAN style="color:#00007F">Nothing</SPAN> <SPAN style="color:#00007F">Then</SPAN><br>        <SPAN style="color:#007F00">' >>>> change has been made in column E</SPAN><br>        <SPAN style="color:#007F00">' take account of multiple cell change, for instance copy down, import or so</SPAN><br>        UnprotectSheet Me<br>        Application.ScreenUpdating = <SPAN style="color:#00007F">False</SPAN><br>        <SPAN style="color:#00007F">For</SPAN> <SPAN style="color:#00007F">Each</SPAN> rC <SPAN style="color:#00007F">In</SPAN> Intersect(Target, Columns("E")).Cells<br>            <SPAN style="color:#007F00">'Lock row if cell in column E = "Heading"</SPAN><br>            <SPAN style="color:#00007F">If</SPAN> rC = "Heading" <SPAN style="color:#00007F">Then</SPAN><br>               rC.EntireRow.Locked = <SPAN style="color:#00007F">True</SPAN><br>            <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br>        <SPAN style="color:#00007F">Next</SPAN> rC<br>        <SPAN style="color:#C00000">ProtectSheet Me</SPAN><br>    <SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">If</SPAN><br><SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN></FONT>
 
Upvote 0

Forum statistics

Threads
1,223,264
Messages
6,171,081
Members
452,377
Latest member
bradfordsam

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