This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//All in 1 change formulas, EXCEPT EARNINGS RATIO------------------ | |
//New is the column with the most recent values | |
//Old is the column with the older values | |
Change= | |
LAMBDA( | |
NEW, OLD, | |
IFERROR(IF(AND(LEFT(CELL("format",NEW),1)="P", LEFT(CELL("format",OLD),1)="P"), | |
NEW-OLD, |