SOLVED

How to add Parameters in Worksheet Protection? Office Scripts

Brass Contributor

How can I allow formatting of columns? I tried to insert the WorksheetProtectionOptions but I keep failing.

 

 

 

 

function main(workbook: ExcelScript.Workbook) {
    let sheet = workbook.getWorksheet("By Item");
    sheet.getProtection().protect(ExcelScript.WorksheetProtectionOptions.allowFormatColumns);
}

 

 

 

 

Here is the link.

 

https://docs.microsoft.com/en-us/javascript/api/office-scripts/excelscript/excelscript.worksheetprot...

5 Replies

@Erut313 

I'm not familiar with Excel Online, but here is a little bit of information that might help you in your plans. If not please just ignore it.

 

You cannot create a sheet protection in the WebApp and you cannot remove any existing sheet protection. However, you can now upload folders with protected sheets and since this update they can also be opened. Editing is possible as far as the set protection allows. I have learned that so far, but if it is different, I am very happy to be taught.

Edit a workbook that contains features unsupported by Excel for the web

https://support.microsoft.com/en-gb/office/edit-a-workbook-that-contains-features-unsupported-by-exc...

 

Thank you for your understanding and patience

 

Nikolino

I know I don't know anything (Socrates)

 

@Erut313 

Certainly not the right person to help you with Javascript. But I would like to provide you with information that might help you. If not please just ignore my post.

Thank you for your time and patience and wish you much success in your project.

 

var sheet = SpreadsheetApp.getActiveSpreadsheet().getSheetByName("TRAVAUX");
var debug = sheet.getName();
var protections = sheet.getProtections(SpreadsheetApp.ProtectionType.RANGE);

 https://stackoverflow.com/questions/60092877/sheet-getprotections-no-longer-works

 

Nikolino

I know I don't know anything (Socrates)

best response confirmed by Erut313 (Brass Contributor)
I was pleased that I could help you at least indirectly.
I wish you a nice day / night with lots of health, joy and love.

Thank you for your patience and time.

Nikolino
I know I don't know anything (Socrates)
1 best response

Accepted Solutions