Forum Discussion

jasbol's avatar
jasbol
Copper Contributor
Feb 29, 2024
Solved

Excel Formulas

Hey Team, I am creating an excel sheet using CY Sales and PY Sales.  I want to show the YoY % Increase or Decrease.  The problem I'm having is some PY Sales were $0.  What is the best way for me to ...
  • HansVogelaar's avatar
    Feb 29, 2024

    jasbol 

    Mathematically, the increase is infinitely large, so it's probably best to do something like

     

    =IFERROR((CY-PY)/PY, "New Entry")

     

    or use some other text. You might arbitrarily set the increase at 100%, but that is unsatisfactory, because then both 0 to 2000 and 1000 to 2000 would return 100% as increase, while 500 to 2000 would return 300% increase.

Resources