I am trying to subtract column "Previous Spend" from column "Current Spend" and put the balance in new calculated column named "Incremental Spend". Easy enough right. But if "Previous Spend" is left blank then it just displays the number that is in "Current Spend".
This was my attempt at the solution but I am getting a #VALUE!
=IF([Current Spend]-[Previous Spend]," ",[Current Spend]-[Previous Spend])+[Current Spend]-[Previous Spend]