You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Apps Script Community
Hello all,
I have recently found a basic function in VBS which needs to be converted to javascript as the function needs to be implemented in JS (google spreadsheets vs excel). Could anyone help with this issue?
VBS Code:
Function TestColor(MyRange As Range) As Boolean If Range(MyRange.Address).Interior.Pattern = xlNone Then TestColor = True End Function