Hi @ahortonmilsig
Here is a good example for the if syntax
Cannot test it at the moment, but your example should be something like this:
if(column(“2019 revenue”) > 0.0 && column(“2018 revenue”) = 0)
{
1
}
else {
round((column(“2019 revenue”)-column(“2018 revenue”))/column(“2018 revenue”),3)
}
3 Likes