Reputation: 187
I have two columns:
If column 2 is blank, and column 1 has a value, then I need column 2 to display a zero. What would a formula look like for that?
Upvotes: 1
Views: 1479
Reputation: 1182
if (isnull({TABLE.column 2}) or {TABLE.column 2}="")
and
(not(isnull({TABLE.column 1})) or {TABLE.column 1}<>"")
then "0"
else {TABLE.column 2}
Upvotes: 0
Reputation: 4610
Use this formula
if ({Of Procs}="") then "0"
else {Of Procs}
I tested it and it works.
Hope it helps
Upvotes: 1