Hey Everyone i need some help regarding saved search formula numeric. I am doing some calculations for customer on opportunity record, I need that column sum on main summary level. the formula numeric column sum and getting errors using summary type. Please kindly review this and help me out, I am not good at formulas.
Thanks
m
MGBC
01/11/2024, 1:41 PM
SUM needs a parenthesis around what you are summing. Like this SUM(xxxxxxx)
MGBC
01/11/2024, 1:43 PM
Also you need a summary function around all your variables of your equation. So add MAX() around your days open and nvl({amount})
MGBC
01/11/2024, 1:43 PM
Then use maximum as your summary type
s
Seemal616
01/11/2024, 5:02 PM
(nvl({amount},0) / (SUM /* comment */ ({amount}) OVER(PARTITION BY {name} ORDER BY {name}))) * nvl({daysopen},0) using this now
Seemal616
01/11/2024, 5:03 PM
when i use Maximum summary type it is giving error
Seemal616
01/11/2024, 5:03 PM
otherwise without summary it is working fine
Seemal616
01/11/2024, 5:05 PM
I basically want sum/total of amount and formula numeric sum/total of column on summary level