How to unlock specific cell in excel

Hi, I’m using uipath for excel automation, and I want to unlock some cells (before protect sheet) in specific column (i.e. from column AG to AI and AY to AZ) so that after protecting sheet I can still edit them. I didn’t find this activity in official package and Balareva package, so I try to invoke code to do it. Here is my code but it can’t achieve. When I try the range as “AG:AK” it sometimes achieve while other times occurs “Invoke code: Exception has been thrown by the target of an invocation.”
Could you help me improve the code or recommend other method to do it?

Dim excel As Microsoft.Office.Interop.Excel.Application
Dim wb1 As Microsoft.Office.Interop.Excel.Workbook
Dim ws1 As Microsoft.Office.Interop.Excel.Worksheet
excel = New Microsoft.Office.Interop.Excel.ApplicationClass
wb1 = excel.Workbooks.Open(“C:\path\test.xlsx”)
ws1 = CType(wb1.Sheets(“Master”), Microsoft.Office.Interop.Excel.Worksheet)
ws1.Range(“AG:AK,AY:AZ”).Locked = False
excel.DisplayAlerts = False
wb1.SaveAs(“C:\path\test.xlsx”)
wb1.Close
excel.Quit
ws1 = Nothing
wb1 = Nothing
excel = Nothing
GC.Collect

Hello @N_Du!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff