Skip to main content
Solved

Rollup - Leave Blank if 0

  • August 30, 2023
  • 2 replies
  • 110 views

Leah_Relish
Forum|alt.badge.img+9

It seems like it should be a simple solution, but my brain is tired! 

I am using a rollup field to show the total discount so I can highlight it on a quote which I have made with page designer. If there is no discount ($0.00) I don't want it to show on the quote. So I am trying to figure out how to leave it blank when there is result is $0. I tried adding another field with a formula, but then I can't get a positive number to be in currency format, just a string. 

I tried doing an IF Aggregation formula but kept getting an error. 

I made sure that the source field (Amt Saved) does not return anything if the result is 0 hoping that would follow through to the rollup, but no luck. 

Can someone please help? 

Best answer by Sho

This will work!

IF(values,SUM(values))

 

2 replies

Forum|alt.badge.img+21
  • Inspiring
  • 560 replies
  • Answer
  • August 31, 2023

This will work!

IF(values,SUM(values))

 


Leah_Relish
Forum|alt.badge.img+9
  • Author
  • Known Participant
  • 15 replies
  • September 1, 2023

This will work!

IF(values,SUM(values))

 


So, you know, I tried that...several times. And kept getting an error. But alas today it works - must have been typing it wrong. Thank you!!!