Logical operator list (or, and, equal, inequality, etc.) for office script in an excel report

This table shows all logical operators that can be used for my script, for instance, using with the IF condition:


// i.e. logical OR -> if cell contains inc001 or inc002    
if (cellValue.includes("inc001") || cellValue.includes("inc002"))           
              

This table is from the documentation.help website where you can find more information.

script excel

Interesting Topics