Saved Search. Summary type of Maximum. FLOOR(ROUN...
# suiteanalytics
m
Saved Search. Summary type of Maximum. FLOOR(ROUND(SUM({amount})/(*50000*/4),2)/.05)*.05 works but FLOOR(ROUND(SUM({amount})/(*{department.goal}*/4),2)/.05)*.05 doesn't work. It seems like NetSuite doesn't like having the join and the SUM function in the same formula - but I am not sure why... Any suggestions?
k
You need a summary type on your bold result
👍 2
Also try breaking that formula up into chunks... you have a ton of stuff going on.
m
You mean break it up in a formatting sense?
Thank you! Adding in MAX() to the bold term fixed the issue!
k
Well, you've got other potential issues - make sure that department.goal can't ever be 0.
or you'll need to insert an max(nvl({department.goal},1))/stuff)
m
Makes sense, thank you for the help!