Tracking Renewal Increases Formula
Hello!
I need some help putting together a formula to track year to date renewal increases.
My criteria is
Underwriting Status needs to be set at "Completed Increase" and i need the sum of all the rates for increases to insurance premiums. I need to total for each row and have a YTD total at the top.
For my row formula I am doing =SUMIF([Basic Life Rate]@row:[Grp LTD Rate]@row, [Underwriting Status]@row = "Completed Increase") but I am getting a return of 0 with data in the row. Any suggestions?
Answers
-
Hi @tim.curtin,
For your row sum:
=IF([Underwriting Status]@row = "Completed Increase", SUM([Basic Life Rate]@row:[Grp LTD Rate]@row), "")
For the total of these, you can then just SUM that column:
=SUM([Completed Increase SUM]:[Completed Increase SUM])
Your SUMIF syntax is a bit wrong, but even correcting it I couldn't get the function to handle multiple columns - you could do them separately and add together, but I've no idea how many you have.
As an example, if you've only those 2 columns:
=SUMIF([Underwriting Status]@row, "Completed Increase", [Basic Life Rate]@row) + SUMIF([Underwriting Status]@row, "Completed Increase", [Grp LTD Rate]@row)
If there are others, then you would add those on.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 66.7K Get Help
- 438 Global Discussions
- 152 Industry Talk
- 497 Announcements
- 5.3K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 77 Community Job Board
- 509 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 307 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!