Forum Discussion
brockry1
Helper II
1 year agoGrowth % DAX Command
I'm trying to place a conidional DAX formula to show if the prior year is 0 then show 100% growth other wise divide the current year/prior year -1. When I add the clause "If(Prior Year) isblank...
- 1 year agoGrowth % =IF(OR([Prior Year] > 0,ISBLANK([Prior Year])),DIVIDE([Current Year] - [Prior Year],[Prior Year],1))