Answers for "add custom function to google sheets"

0

add custom function to google sheets

/** 
 * Calculates Pro
 *  @customFunction
 */

function ProfitPostTax(Sales,COGS,OtherExp){
  return (Sales,COGS,OtherExp)- ((Sales-COGS-OtherExp)*.21)
}

//You need to add @customfunction tag to show list in google sheet
Posted by: Guest on May-04-2022

Code answers related to "TypeScript"

Browse Popular Code Answers by Language