HI! I am trying to apply a tiered calculation to a column of values in an excel sheet to determine the Total Fee by Dollar. I need it to be one formula. Please see attached. Any help would be...
Yes, I have an idea, but lets get the whole process clear then. (It wasn't clear to me that this was what you meant by "tiered" calculation. Maybe that's a technical term, and known to people in finance, or some other discipline; it seemed to me a perfectly clear interpretation could be that there are different percentages applied to different tiers based on account value. Full stop.)
If the account value is 7,654,321 is the fee calculated as
pfmje As an alternative, the attached workbook contains an example of a tiered calculation for whatever. Fees, bonus plans. You name it. Doesn't really matter what you calculate, as long as it's tiered. But you need to add a column (in this example, column C). Then you can use the formula in F to calculate the fee for the amount entered in E, in one, not very straight-forward but manageable, formula. For the fun of it, I also introduced a cap on the fee, so that fee will not keep increasing after the 3 million limit.
I was also looking for this same formula for a similar application and was enthused to find your post. But when I apply your attached spreadsheet and its formulas, my results are slightly different than when I calculate them myself.
I had to change the values slightly to match my fee schedule, but the same principle applies:
In this example, someone with $250,000 would have an annual fee of $3,525. ($100,000*1.5%=$1500 + $150,000*1.35%=$2,025. $1500+$2025=$3525). The spreadsheet you provided gives me $3,425
The difference becomes greater the higher up the values become.
Example: At $1,180,000, the fee based on manual calculations comes out to $13,450. (($100,000*1.5%)+($150,000*1.35%)+ ($250,000*1.25%)+(the remaining $680,000 at 1%) or $1500+$2025+$3125+$6800).
This ends up being a blended rate of 1.14%, which makes sense logically, given the numbers.
Your spreadsheet shows a total fee of $12,725 or a blended rate of 1.08%. I'm not smart enough to figure out why it's off so much, but looking at the blended rate of 1.08%, it's pretty easy to see that it is off somewhere, given that almost half of the account is charged a fee of 1.25% or higher.
For the fun of it, I also introduced a cap on the fee, so that fee will not keep increasing after the 3 million limit.
That's an interesting notion, Riny_van_Eekelen. I wonder if financial advisors do that in practice? Because, of course, presumably it IS more work managing a $20 million account than one worth "only" $1.5 million. Or $4 million.
Nevertheless, a worthy question to ask of such a service provider.
A further alternative would be to have an extended Fee Table in which the percentage declined for, say, every $5 million, gradually approaching zero above (you name it; but I think it'd be higher than $3 million)....
mathetes Capping fees may not be common in financial services industry. But that's not my area of expertise 🙂
When applying these kind of calculations to employee incentive plans, for example, it's quite common in the industries I've worked in (in Europe, that is), that such incentives aren't unlimited but capped at a number of times of target incentives. Obviously, the rates table will look "slightly" different as the incentive rate usually goes up for incremental revenues/order intake (or whatever the basis may be for the incentive).
Anyhow, just wanted to demonstrate that you can do these kind of calculations in one single formula with one helper column that holds the differential rate from the current to previous tier.
I woke up this morning realizing that the solution to your request is to emulate the way the tax table works. So I've extended your table (and given it the range name "FeeTable" in the formula that results. Here's the new table:
And here's an example of the formula and an explanation of the components. Cell A11 contains the Account Balance for which you're going to calculate the appropriate fee and it is used in each of the VLOOKUP formulas, in each case just retrieving one of the data elements in that row of FeeTable.
=VLOOKUP(A11,FeeTable,3,1)
+
(VLOOKUP(A11,FeeTable,5,1)
*
(A11-VLOOKUP(A11,FeeTable,6,1)))
The first VLOOKUP instance retrieves the info from column C, the "base fee" based on reaching that tier
the second VLOOKUP retrieves the percentage to be applied
and the third VLOOKUP retrieves the number from column F, which is then subtracted from the balance itself
The formula then concludes by ;multiplying the excess $ by the applicable percentage and then adding that to what I've called the "base fee"
I've attached the resulting spreadsheet. Try it out. Have fun. Let me know if you have any questions.
These tiered fee schedules are common for financial companies.
And are they commonly computed in this fashion as well?
I have dealt with financial companies myself. (I am a retiree, living on my IRA.) I just always assumed that the lower fees were it (the way I first approached this). I don't recall anybody ever explaining the proposed fee as "Well, John, we charge x.xx% on the first $100,000, a shade less on the next $400,000, another shade less up to a million, and so on. Any questions?" And in articles on the subject, there's just the reference to "At that level, people are usually paying x.xx%" rather than (again) some convoluted explanation of how they get there.
On the other hand, I can see how it makes sense. The net effect of doing it as we've now done it (as you always wanted it) is that the fee very gradually declines, on a dollar by dollar basis, as the total asset base increases.
Or increases as the asset base declines. Or does it? It certainly would if you followed it mechanically. But may I ask you a customer relations question? Say I'm one of your clients, living (as I've already said) on my IRA's Required Minimum Distribution, and that as I approach my 80s, my asset base has started to decline. But I've been a client of yours for decades. And at its peak, my IRA deserved a nice low fee rate. I'm wondering if there's a clause in your contracts that entitles long-time customers to that lowest fee rate attained, even as their IRA (plus whatever other total assets you might be managing) starts to decline.
Just curious. It's kind of the converse of the "Cap" that @Riny_van_Eekelen incorporated in his ingenious solution.
Before I take any more time delivering the formula (more likely formulas, plural) that you seem to be asking for, I want to make absolutely sure of the business requirement.
Each example you've given has been for account levels at the lower end of the spectrum. The question I asked you most recently had to do with a figure at the high end. Your answer, "yes," that it was to apply each successive level's percentage, in sequence, seemed to me to be unlikely (or "unwise"; take your pick). Why wouldn't that person with the multi-million dollar account just expect--and be given--the lowest rate?
I wrote my question thinking it was an absurd interpretation of "tiered calculation,"so, frankly, was surprised when you said "Yes! That is correct." And then, the fact that you responded with examples that were at the bottom end, not taking my $7,654,321 figure and working it through the maze of laddered/tiered percentages, I wondered if you'd really read my question and thought about the implications of doing it that way.
The closest example that comes to mind of another kind of "tiered calculation" is that of the table in our Federal Income Tax instructions where it shows how to take your taxable income and figure the taxes owed. The table (there are various ones for single married, etc, but they all have a similar form not unlike the one you have presented), looks something like the example in the attached sheet. The good thing about that is that you're able (were you to want to write your own formula) to do a single VLOOKUP to go from your taxable income [comparable to your "account value" in this example] to a base rate plus additional percentage for anything above. That is, it's a single lookup value that delivers the entire set of info needed to finish the calculation.
You (your company, your organization) seems to be making this far more complicated than it needs to be, because you're asking for a computation at each level [along with the slightly constricting "it must be a single formula" expectation) when the objective is simply to come up with a descending percentage--the converse of the tax table's increasing percentage--based on an incoming figure to base it on.
So that's why I'm coming back. It IS possible to do what you're asking, but I wonder if it's really truly what you should be asking. I hope that makes sense. And if it really is what you're asking, I'd like to hear "why"--why is somebody insisting on doing it that way? To what extent has thought been given to doing it in a way more comparable to the tax table example attached? It IS far simpler to explain to clients AND far simpler to implement and maintain.
"}},"componentScriptGroups({\"componentId\":\"custom.widget.MicrosoftFooter\"})":{"__typename":"ComponentScriptGroups","scriptGroups":{"__typename":"ComponentScriptGroupsDefinition","afterInteractive":{"__typename":"PageScriptGroupDefinition","group":"AFTER_INTERACTIVE","scriptIds":[]},"lazyOnLoad":{"__typename":"PageScriptGroupDefinition","group":"LAZY_ON_LOAD","scriptIds":[]}},"componentScripts":[]},"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"components/community/NavbarDropdownToggle\"]})":[{"__ref":"CachedAsset:text:en_US-components/community/NavbarDropdownToggle-1745505307000"}],"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/users/UserAvatar\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1745505307000"}],"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/ranks/UserRankLabel\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1745505307000"}],"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"components/attachments/AttachmentView/AttachmentViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1745505307000"}],"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"components/tags/TagView/TagViewChip\"]})":[{"__ref":"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1745505307000"}],"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/AcceptedSolutionButton\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1745505307000"}],"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"components/messages/ThreadedReplyList\"]})":[{"__ref":"CachedAsset:text:en_US-components/messages/ThreadedReplyList-1745505307000"}],"message({\"id\":\"message:1272897\"})":{"__ref":"ForumReplyMessage:message:1272897"},"cachedText({\"lastModified\":\"1745505307000\",\"locale\":\"en-US\",\"namespaces\":[\"shared/client/components/common/Pager/PagerLoadMore\"]})":[{"__ref":"CachedAsset:text:en_US-shared/client/components/common/Pager/PagerLoadMore-1745505307000"}],"message({\"id\":\"message:1278675\"})":{"__ref":"ForumReplyMessage:message:1278675"},"message({\"id\":\"message:3216503\"})":{"__ref":"ForumReplyMessage:message:3216503"},"message({\"id\":\"message:3216543\"})":{"__ref":"ForumReplyMessage:message:3216543"},"message({\"id\":\"message:1278713\"})":{"__ref":"ForumReplyMessage:message:1278713"},"message({\"id\":\"message:1278848\"})":{"__ref":"ForumReplyMessage:message:1278848"},"message({\"id\":\"message:1278490\"})":{"__ref":"ForumReplyMessage:message:1278490"},"message({\"id\":\"message:1281175\"})":{"__ref":"ForumReplyMessage:message:1281175"},"message({\"id\":\"message:1281247\"})":{"__ref":"ForumReplyMessage:message:1281247"},"message({\"id\":\"message:1275458\"})":{"__ref":"ForumReplyMessage:message:1275458"}},"Theme:customTheme1":{"__typename":"Theme","id":"customTheme1"},"User:user:-1":{"__typename":"User","id":"user:-1","uid":-1,"login":"Deleted","email":"","avatar":null,"rank":null,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":"ANONYMOUS","registrationTime":null,"confirmEmailStatus":false,"registrationAccessLevel":"VIEW","ssoRegistrationFields":[]},"ssoId":null,"profileSettings":{"__typename":"ProfileSettings","dateDisplayStyle":{"__typename":"InheritableStringSettingWithPossibleValues","key":"layout.friendly_dates_enabled","value":"false","localValue":"true","possibleValues":["true","false"]},"dateDisplayFormat":{"__typename":"InheritableStringSetting","key":"layout.format_pattern_date","value":"MMM dd yyyy","localValue":"MM-dd-yyyy"},"language":{"__typename":"InheritableStringSettingWithPossibleValues","key":"profile.language","value":"en-US","localValue":null,"possibleValues":["en-US","es-ES"]},"repliesSortOrder":{"__typename":"InheritableStringSettingWithPossibleValues","key":"config.user_replies_sort_order","value":"DEFAULT","localValue":"DEFAULT","possibleValues":["DEFAULT","LIKES","PUBLISH_TIME","REVERSE_PUBLISH_TIME"]}},"deleted":false},"CachedAsset:pages-1746563717119":{"__typename":"CachedAsset","id":"pages-1746563717119","value":[{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"BlogViewAllPostsPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId/all-posts/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"CasePortalPage","type":"CASE_PORTAL","urlPath":"/caseportal","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"CreateGroupHubPage","type":"GROUP_HUB","urlPath":"/groups/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"CaseViewPage","type":"CASE_DETAILS","urlPath":"/case/:caseId/:caseNumber","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"InboxPage","type":"COMMUNITY","urlPath":"/inbox","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"HelpFAQPage","type":"COMMUNITY","urlPath":"/help","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"IdeaMessagePage","type":"IDEA_POST","urlPath":"/idea/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"IdeaViewAllIdeasPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/all-ideas/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"LoginPage","type":"USER","urlPath":"/signin","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"BlogPostPage","type":"BLOG","urlPath":"/category/:categoryId/blogs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"UserBlogPermissions.Page","type":"COMMUNITY","urlPath":"/c/user-blog-permissions/page","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ThemeEditorPage","type":"COMMUNITY","urlPath":"/designer/themes","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TkbViewAllArticlesPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId/all-articles/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1730819800000,"localOverride":null,"page":{"id":"AllEvents","type":"CUSTOM","urlPath":"/Events","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"OccasionEditPage","type":"EVENT","urlPath":"/event/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"OAuthAuthorizationAllowPage","type":"USER","urlPath":"/auth/authorize/allow","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"PageEditorPage","type":"COMMUNITY","urlPath":"/designer/pages","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"PostPage","type":"COMMUNITY","urlPath":"/category/:categoryId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ForumBoardPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TkbBoardPage","type":"TKB","urlPath":"/category/:categoryId/kb/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"EventPostPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"UserBadgesPage","type":"COMMUNITY","urlPath":"/users/:login/:userId/badges","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"GroupHubMembershipAction","type":"GROUP_HUB","urlPath":"/membership/join/:nodeId/:membershipType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"MaintenancePage","type":"COMMUNITY","urlPath":"/maintenance","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"IdeaReplyPage","type":"IDEA_REPLY","urlPath":"/idea/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"UserSettingsPage","type":"USER","urlPath":"/mysettings/:userSettingsTab","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"GroupHubsPage","type":"GROUP_HUB","urlPath":"/groups","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ForumPostPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"OccasionRsvpActionPage","type":"OCCASION","urlPath":"/event/:boardId/:messageSubject/:messageId/rsvp/:responseType","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"VerifyUserEmailPage","type":"USER","urlPath":"/verifyemail/:userId/:verifyEmailToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"AllOccasionsPage","type":"OCCASION","urlPath":"/category/:categoryId/events/:boardId/all-events/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"EventBoardPage","type":"EVENT","urlPath":"/category/:categoryId/events/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TkbReplyPage","type":"TKB_REPLY","urlPath":"/kb/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"IdeaBoardPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"CommunityGuideLinesPage","type":"COMMUNITY","urlPath":"/communityguidelines","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"CaseCreatePage","type":"SALESFORCE_CASE_CREATION","urlPath":"/caseportal/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TkbEditPage","type":"TKB","urlPath":"/kb/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ForgotPasswordPage","type":"USER","urlPath":"/forgotpassword","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"IdeaEditPage","type":"IDEA","urlPath":"/idea/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TagPage","type":"COMMUNITY","urlPath":"/tag/:tagName","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"BlogBoardPage","type":"BLOG","urlPath":"/category/:categoryId/blog/:boardId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"OccasionMessagePage","type":"OCCASION_TOPIC","urlPath":"/event/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ManageContentPage","type":"COMMUNITY","urlPath":"/managecontent","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ClosedMembershipNodeNonMembersPage","type":"GROUP_HUB","urlPath":"/closedgroup/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"CommunityPage","type":"COMMUNITY","urlPath":"/","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ForumMessagePage","type":"FORUM_TOPIC","urlPath":"/discussions/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"IdeaPostPage","type":"IDEA","urlPath":"/category/:categoryId/ideas/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1730819800000,"localOverride":null,"page":{"id":"CommunityHub.Page","type":"CUSTOM","urlPath":"/Directory","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"BlogMessagePage","type":"BLOG_ARTICLE","urlPath":"/blog/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"RegistrationPage","type":"USER","urlPath":"/register","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"EditGroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ForumEditPage","type":"FORUM","urlPath":"/discussions/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ResetPasswordPage","type":"USER","urlPath":"/resetpassword/:userId/:resetPasswordToken","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1730819800000,"localOverride":null,"page":{"id":"AllBlogs.Page","type":"CUSTOM","urlPath":"/blogs","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TkbMessagePage","type":"TKB_ARTICLE","urlPath":"/kb/:boardId/:messageSubject/:messageId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"BlogEditPage","type":"BLOG","urlPath":"/blog/:boardId/:messageSubject/:messageId/edit","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ManageUsersPage","type":"USER","urlPath":"/users/manage/:tab?/:manageUsersTab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ForumReplyPage","type":"FORUM_REPLY","urlPath":"/discussions/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"PrivacyPolicyPage","type":"COMMUNITY","urlPath":"/privacypolicy","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"NotificationPage","type":"COMMUNITY","urlPath":"/notifications","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"UserPage","type":"USER","urlPath":"/users/:login/:userId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"HealthCheckPage","type":"COMMUNITY","urlPath":"/health","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"OccasionReplyPage","type":"OCCASION_REPLY","urlPath":"/event/:boardId/:messageSubject/:messageId/comments/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ManageMembersPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/manage/:tab?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"SearchResultsPage","type":"COMMUNITY","urlPath":"/search","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"BlogReplyPage","type":"BLOG_REPLY","urlPath":"/blog/:boardId/:messageSubject/:messageId/replies/:replyId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"GroupHubPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TermsOfServicePage","type":"COMMUNITY","urlPath":"/termsofservice","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"CategoryPage","type":"CATEGORY","urlPath":"/category/:categoryId","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"ForumViewAllTopicsPage","type":"FORUM","urlPath":"/category/:categoryId/discussions/:boardId/all-topics/(/:after|/:before)?","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"TkbPostPage","type":"TKB","urlPath":"/category/:categoryId/kbs/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"},{"lastUpdatedTime":1746563717119,"localOverride":null,"page":{"id":"GroupHubPostPage","type":"GROUP_HUB","urlPath":"/group/:groupHubId/:boardId/create","__typename":"PageDescriptor"},"__typename":"PageResource"}],"localOverride":false},"CachedAsset:text:en_US-components/context/AppContext/AppContextProvider-0":{"__typename":"CachedAsset","id":"text:en_US-components/context/AppContext/AppContextProvider-0","value":{"noCommunity":"Cannot find community","noUser":"Cannot find current user","noNode":"Cannot find node with id {nodeId}","noMessage":"Cannot find message with id {messageId}","userBanned":"We're sorry, but you have been banned from using this site.","userBannedReason":"You have been banned for the following reason: {reason}"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/common/Loading/LoadingDot-0":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/common/Loading/LoadingDot-0","value":{"title":"Loading..."},"localOverride":false},"Rank:rank:37":{"__typename":"Rank","id":"rank:37","position":18,"name":"Copper Contributor","color":"333333","icon":null,"rankStyle":"TEXT"},"User:user:367287":{"__typename":"User","id":"user:367287","uid":367287,"login":"pfmje","deleted":false,"avatar":{"__typename":"UserAvatar","url":"https://techcommunity.microsoft.com/t5/s/gxcuf89792/m_assets/avatars/default/avatar-1.svg?time=0"},"rank":{"__ref":"Rank:rank:37"},"email":"","messagesCount":9,"biography":null,"topicsCount":3,"kudosReceivedCount":0,"kudosGivenCount":1,"kudosWeight":1,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2019-06-26T13:07:15.480-07:00","confirmEmailStatus":null},"followersCount":null,"solutionsCount":0,"entityType":"USER","eventPath":"community:gxcuf89792/user:367287"},"Category:category:microsoft365":{"__typename":"Category","id":"category:microsoft365","entityType":"CATEGORY","displayId":"microsoft365","nodeType":"category","depth":3,"title":"Microsoft 365","shortTitle":"Microsoft 365","parent":{"__ref":"Category:category:products-services"},"categoryPolicies":{"__typename":"CategoryPolicies","canReadNode":{"__typename":"PolicyResult","failureReason":null}}},"Category:category:top":{"__typename":"Category","id":"category:top","entityType":"CATEGORY","displayId":"top","nodeType":"category","depth":0,"title":"Top","shortTitle":"Top"},"Category:category:communities":{"__typename":"Category","id":"category:communities","entityType":"CATEGORY","displayId":"communities","nodeType":"category","depth":1,"parent":{"__ref":"Category:category:top"},"title":"Communities","shortTitle":"Communities"},"Category:category:products-services":{"__typename":"Category","id":"category:products-services","entityType":"CATEGORY","displayId":"products-services","nodeType":"category","depth":2,"parent":{"__ref":"Category:category:communities"},"title":"Products","shortTitle":"Products"},"Forum:board:ExcelGeneral":{"__typename":"Forum","id":"board:ExcelGeneral","entityType":"FORUM","displayId":"ExcelGeneral","nodeType":"board","depth":4,"conversationStyle":"FORUM","repliesProperties":{"__typename":"RepliesProperties","sortOrder":"REVERSE_PUBLISH_TIME","repliesFormat":"threaded"},"tagProperties":{"__typename":"TagNodeProperties","tagsEnabled":{"__typename":"PolicyResult","failureReason":null}},"requireTags":true,"tagType":"PRESET_ONLY","description":"Your community for how-to discussions and sharing best practices on Microsoft Excel. If you’re looking for technical support, please visit Microsoft Support Community.","title":"Excel","shortTitle":"Excel","parent":{"__ref":"Category:category:microsoft365"},"ancestors":{"__typename":"CoreNodeConnection","edges":[{"__typename":"CoreNodeEdge","node":{"__ref":"Community:community:gxcuf89792"}},{"__typename":"CoreNodeEdge","node":{"__ref":"Category:category:communities"}},{"__typename":"CoreNodeEdge","node":{"__ref":"Category:category:products-services"}},{"__typename":"CoreNodeEdge","node":{"__ref":"Category:category:microsoft365"}}]},"userContext":{"__typename":"NodeUserContext","canAddAttachments":false,"canUpdateNode":false,"canPostMessages":false,"isSubscribed":false},"theme":{"__ref":"Theme:customTheme1"},"boardPolicies":{"__typename":"BoardPolicies","canViewSpamDashBoard":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.access_spam_quarantine.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.access_spam_quarantine.allowed.accessDenied","args":[]}},"canArchiveMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.content_archivals.enable_content_archival_settings.accessDenied","key":"error.lithium.policies.content_archivals.enable_content_archival_settings.accessDenied","args":[]}},"canPublishArticleOnCreate":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.forums.policy_can_publish_on_create_workflow_action.accessDenied","key":"error.lithium.policies.forums.policy_can_publish_on_create_workflow_action.accessDenied","args":[]}}},"eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/"},"ForumTopicMessage:message:1272798":{"__typename":"ForumTopicMessage","uid":1272798,"subject":"Tiered Calculation Formula Help","id":"message:1272798","revisionNum":1,"repliesCount":19,"author":{"__ref":"User:user:367287"},"depth":0,"hasGivenKudo":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"conversation":{"__ref":"Conversation:conversation:1272798"},"readOnly":false,"editFrozen":false,"moderationData":{"__ref":"ModerationData:moderation_data:1272798"},"body@stripHtml({\"truncateLength\":200})":" HI! I am trying to apply a tiered calculation to a column of values in an excel sheet to determine the Total Fee by Dollar. I need it to be one formula. Please see attached. Any help would be...","body@stringLength":"256","rawBody":"
HI!
I am trying to apply a tiered calculation to a column of values in an excel sheet to determine the Total Fee by Dollar. I need it to be one formula.
Please see attached. Any help would be greatly appreciated!
","kudosSumWeight":0,"postTime":"2020-04-01T13:53:03.726-07:00","images":{"__typename":"AssociatedImageConnection","edges":[],"totalCount":0,"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"attachments":{"__typename":"AttachmentConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"AttachmentEdge","cursor":"MjUuM3wyLjF8b3w1fF9OVl98MQ","node":{"__ref":"Attachment:{\"id\":\"attachment:message1272798AttachmentNumber1\",\"url\":\"https://techcommunity.microsoft.com/t5/s/gxcuf89792/attachments/gxcuf89792/ExcelGeneral/57300/1/Excel%20Example.png\"}"}}]},"tags":{"__typename":"TagConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"TagEdge","cursor":"MjUuM3wyLjF8b3wxMHxfTlZffDE","node":{"__typename":"Tag","id":"tag:Formulas and Functions","text":"Formulas and Functions","time":"2016-06-24T14:00:56.974-07:00","lastActivityTime":null,"messagesCount":null,"followersCount":null}}]},"timeToRead":1,"currentRevision":{"__ref":"Revision:revision:1272798_1"},"latestVersion":null,"metrics":{"__typename":"MessageMetrics","views":39691},"visibilityScope":"PUBLIC","canonicalUrl":null,"seoTitle":null,"seoDescription":null,"isEscalated":null,"placeholder":false,"originalMessageForPlaceholder":null,"messagePolicies":{"__typename":"MessagePolicies","canModerateSpamMessage":{"__typename":"PolicyResult","failureReason":{"__typename":"FailureReason","message":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","key":"error.lithium.policies.feature.moderation_spam.action.moderate_entity.allowed.accessDenied","args":[]}}},"archivalData":null,"customFields":[]},"Conversation:conversation:1272798":{"__typename":"Conversation","id":"conversation:1272798","solved":false,"topic":{"__ref":"ForumTopicMessage:message:1272798"},"lastPostingActivityTime":"2022-02-26T08:09:41.335-08:00","lastPostTime":"2022-02-26T08:09:41.335-08:00","unreadReplyCount":19,"isSubscribed":false},"ModerationData:moderation_data:1272798":{"__typename":"ModerationData","id":"moderation_data:1272798","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"Attachment:{\"id\":\"attachment:message1272798AttachmentNumber1\",\"url\":\"https://techcommunity.microsoft.com/t5/s/gxcuf89792/attachments/gxcuf89792/ExcelGeneral/57300/1/Excel%20Example.png\"}":{"__typename":"Attachment","id":"attachment:message1272798AttachmentNumber1","filename":"Excel Example.png","filesize":10427,"contentType":"image/png","url":"https://techcommunity.microsoft.com/t5/s/gxcuf89792/attachments/gxcuf89792/ExcelGeneral/57300/1/Excel%20Example.png"},"Revision:revision:1272798_1":{"__typename":"Revision","id":"revision:1272798_1","lastEditTime":"2020-04-01T13:53:03.726-07:00"},"ForumReplyMessage:message:1272926":{"__typename":"ForumReplyMessage","id":"message:1272926","conversation":{"__ref":"Conversation:conversation:1272798"},"author":{"__ref":"User:user:367287"},"revisionNum":1,"uid":1272926,"depth":4,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"subject":"Re: Tiered Calculation Formula Help","readOnly":false,"editFrozen":false,"moderationData":{"__ref":"ModerationData:moderation_data:1272926"},"parent":{"__ref":"ForumReplyMessage:message:1272897"},"body":"
Yes, I have an idea, but lets get the whole process clear then. (It wasn't clear to me that this was what you meant by \"tiered\" calculation. Maybe that's a technical term, and known to people in finance, or some other discipline; it seemed to me a perfectly clear interpretation could be that there are different percentages applied to different tiers based on account value. Full stop.)
If the account value is 7,654,321 is the fee calculated as
1.37% on the first 100K
1.1% on the next 400K
0.96% on the next 500K
0.68% on all the rest
?
Or is there some other pattern expected?
","body@stringLength":"872","rawBody":"
Yes, I have an idea, but lets get the whole process clear then. (It wasn't clear to me that this was what you meant by \"tiered\" calculation. Maybe that's a technical term, and known to people in finance, or some other discipline; it seemed to me a perfectly clear interpretation could be that there are different percentages applied to different tiers based on account value. Full stop.)
If the account value is 7,654,321 is the fee calculated as
1.37% on the first 100K
1.1% on the next 400K
0.96% on the next 500K
0.68% on all the rest
?
Or is there some other pattern expected?
","author":{"__ref":"User:user:425987"},"isEscalated":null,"postTime":"2020-04-01T14:49:46.581-07:00","solution":false,"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}},"repliesCount":16},"Revision:revision:1272926_1":{"__typename":"Revision","id":"revision:1272926_1","lastEditTime":"2020-04-01T15:03:49.555-07:00"},"QueryVariables:ReplyList:message:1272926:1":{"__typename":"QueryVariables","id":"ReplyList:message:1272926:1","value":{"id":"message:1272926","first":10,"sorts":{"postTime":{"direction":"DESC"}},"repliesFirst":3,"repliesFirstDepthThree":1,"repliesSorts":{"postTime":{"direction":"DESC"}},"useAvatar":true,"useAuthorLogin":true,"useAuthorRank":true,"useBody":true,"useKudosCount":true,"useTimeToRead":false,"useMedia":false,"useReadOnlyIcon":false,"useRepliesCount":true,"useSearchSnippet":false,"useAcceptedSolutionButton":true,"useSolvedBadge":false,"useAttachments":false,"attachmentsFirst":5,"useTags":false,"useNodeAncestors":false,"useUserHoverCard":false,"useNodeHoverCard":false,"useModerationStatus":true,"usePreviewSubjectModal":false,"useMessageStatus":true}},"ROOT_MUTATION":{"__typename":"Mutation"},"CachedAsset:text:en_US-components/community/NavbarDropdownToggle-1745505307000":{"__typename":"CachedAsset","id":"text:en_US-components/community/NavbarDropdownToggle-1745505307000","value":{"ariaLabelClosed":"Press the down arrow to open the menu"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/users/UserAvatar-1745505307000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/users/UserAvatar-1745505307000","value":{"altText":"{login}'s avatar","altTextGeneric":"User's avatar"},"localOverride":false},"CachedAsset:text:en_US-shared/client/components/ranks/UserRankLabel-1745505307000":{"__typename":"CachedAsset","id":"text:en_US-shared/client/components/ranks/UserRankLabel-1745505307000","value":{"altTitle":"Icon for {rankName} rank"},"localOverride":false},"CachedAsset:text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1745505307000":{"__typename":"CachedAsset","id":"text:en_US-components/attachments/AttachmentView/AttachmentViewChip-1745505307000","value":{"errorTitle":"Failed!","previewFile":"Preview File","downloadFile":"Download File {name}","removeFile":"Remove File {name}","errorBadExtension":"This file does not have a valid extension. \"{extensions}\" are the valid extensions.","errorFileEmpty":"This file is empty or does not exist.","errorTooLarge":"The maximum file size is: {maxFileSize}.","errorTooMany":"Too many attachments. The maximum number of attachments per message is: {maxAttachmentCount, number, integer}.","errorDuplicate":"This file is already attached."},"localOverride":false},"CachedAsset:text:en_US-components/tags/TagView/TagViewChip-1745505307000":{"__typename":"CachedAsset","id":"text:en_US-components/tags/TagView/TagViewChip-1745505307000","value":{"tagLabelName":"Tag name {tagName}"},"localOverride":false},"CachedAsset:text:en_US-components/messages/AcceptedSolutionButton-1745505307000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/AcceptedSolutionButton-1745505307000","value":{"accept":"Mark as Solution","accepted":"Marked as Solution","errorHeader":"Error!","errorAdd":"There was an error marking as solution.","errorRemove":"There was an error unmarking as solution.","solved":"Solved","topicAlreadySolvedErrorTitle":"Solution Already Exists","topicAlreadySolvedErrorDesc":"Refresh the browser to view the existing solution"},"localOverride":false},"CachedAsset:text:en_US-components/messages/ThreadedReplyList-1745505307000":{"__typename":"CachedAsset","id":"text:en_US-components/messages/ThreadedReplyList-1745505307000","value":{"title":"{count, plural, one{# Reply} other{# Replies}}","title@board:BLOG":"{count, plural, one{# Comment} other{# Comments}}","title@board:TKB":"{count, plural, one{# Comment} other{# Comments}}","title@board:IDEA":"{count, plural, one{# Comment} other{# Comments}}","title@board:OCCASION":"{count, plural, one{# Comment} other{# Comments}}","noRepliesTitle":"No Replies","noRepliesTitle@board:BLOG":"No Comments","noRepliesTitle@board:TKB":"No Comments","noRepliesTitle@board:IDEA":"No Comments","noRepliesTitle@board:OCCASION":"No Comments","noRepliesDescription":"Be the first to reply","noRepliesDescription@board:BLOG":"Be the first to comment","noRepliesDescription@board:TKB":"Be the first to comment","noRepliesDescription@board:IDEA":"Be the first to comment","noRepliesDescription@board:OCCASION":"Be the first to comment","messageReadOnlyAlert:BLOG":"Comments have been turned off for this post","messageReadOnlyAlert:TKB":"Comments have been turned off for this article","messageReadOnlyAlert:IDEA":"Comments have been turned off for this idea","messageReadOnlyAlert:FORUM":"Replies have been turned off for this discussion","messageReadOnlyAlert:OCCASION":"Comments have been turned off for this event"},"localOverride":false},"Rank:rank:30":{"__typename":"Rank","id":"rank:30","position":11,"name":"Platinum Contributor","color":"333333","icon":null,"rankStyle":"TEXT"},"User:user:403176":{"__typename":"User","id":"user:403176","uid":403176,"login":"Riny_van_Eekelen","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2019-09-04T03:33:59.138-07:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://techcommunity.microsoft.com/t5/s/gxcuf89792/images/dS00MDMxNzYtMTUxOTg2aTBBRDU2OEMwNUY4MzEyNTE"},"rank":{"__ref":"Rank:rank:30"},"entityType":"USER","eventPath":"community:gxcuf89792/user:403176"},"ModerationData:moderation_data:1278675":{"__typename":"ModerationData","id":"moderation_data:1278675","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"User:user:1318554":{"__typename":"User","id":"user:1318554","uid":1318554,"login":"Mach1351","biography":null,"registrationData":{"__typename":"RegistrationData","status":null,"registrationTime":"2022-02-26T07:07:15.322-08:00"},"deleted":false,"email":"","avatar":{"__typename":"UserAvatar","url":"https://techcommunity.microsoft.com/t5/s/gxcuf89792/m_assets/avatars/default/avatar-8.svg?time=0"},"rank":{"__ref":"Rank:rank:37"},"entityType":"USER","eventPath":"community:gxcuf89792/user:1318554"},"ForumReplyMessage:message:1278675":{"__typename":"ForumReplyMessage","uid":1278675,"id":"message:1278675","revisionNum":1,"author":{"__ref":"User:user:403176"},"readOnly":false,"repliesCount":8,"depth":5,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1272926"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:1278675"},"body":"
pfmje As an alternative, the attached workbook contains an example of a tiered calculation for whatever. Fees, bonus plans. You name it. Doesn't really matter what you calculate, as long as it's tiered. But you need to add a column (in this example, column C). Then you can use the formula in F to calculate the fee for the amount entered in E, in one, not very straight-forward but manageable, formula. For the fun of it, I also introduced a cap on the fee, so that fee will not keep increasing after the 3 million limit.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"208","kudosSumWeight":0,"postTime":"2020-04-03T06:18:57.371-07:00","lastPublishTime":"2020-04-03T06:18:57.371-07:00","metrics":{"__typename":"MessageMetrics","views":37905},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:1278675","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDEzMjowfGludCwzMjE2NTAzLDMyMTY1MDM","node":{"__ref":"ForumReplyMessage:message:3216503"}},{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDEzMjowfGludCwzMjE2NTAzLDEyNzg3MTM","node":{"__ref":"ForumReplyMessage:message:1278713"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[{"__typename":"AttachmentEdge","cursor":"MjUuM3wyLjF8b3w1fF9OVl98MQ","node":{"__ref":"Attachment:{\"id\":\"attachment:message1278675AttachmentNumber1\",\"url\":\"https://techcommunity.microsoft.com/t5/s/gxcuf89792/attachments/gxcuf89792/ExcelGeneral/57491/1/Tiered%20fee%20calculation.xlsx\"}"}}],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:3216503":{"__typename":"ModerationData","id":"moderation_data:3216503","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:3216503":{"__typename":"ForumReplyMessage","uid":3216503,"id":"message:3216503","revisionNum":1,"author":{"__ref":"User:user:1318554"},"readOnly":false,"repliesCount":2,"depth":6,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1278675"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:3216503"},"body":"
I was also looking for this same formula for a similar application and was enthused to find your post. But when I apply your attached spreadsheet and its formulas, my results are slightly different than when I calculate them myself.
I had to change the values slightly to match my fee schedule, but the same principle applies:
0-$100,000 1.5%
the next $150,000 1.35%
the next $250,000 1.25%
the next $1,500,000 1%
Beyond at .75%
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":0,"postTime":"2022-02-26T07:10:48.713-08:00","lastPublishTime":"2022-02-26T07:10:48.713-08:00","metrics":{"__typename":"MessageMetrics","views":29403},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:3216503","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDEzMjowfGludCwzMjE2NTQzLDMyMTY1NDM","node":{"__ref":"ForumReplyMessage:message:3216543"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:3216543":{"__typename":"ModerationData","id":"moderation_data:3216543","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:3216543":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:1318554"},"id":"message:3216543","revisionNum":1,"uid":3216543,"depth":7,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:3216503"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:3216543"},"body":"I accidentally submitted before I finished.
In this example, someone with $250,000 would have an annual fee of $3,525. ($100,000*1.5%=$1500 + $150,000*1.35%=$2,025. $1500+$2025=$3525). The spreadsheet you provided gives me $3,425
The difference becomes greater the higher up the values become.
Example: At $1,180,000, the fee based on manual calculations comes out to $13,450. (($100,000*1.5%)+($150,000*1.35%)+ ($250,000*1.25%)+(the remaining $680,000 at 1%) or $1500+$2025+$3125+$6800).
This ends up being a blended rate of 1.14%, which makes sense logically, given the numbers.
Your spreadsheet shows a total fee of $12,725 or a blended rate of 1.08%. I'm not smart enough to figure out why it's off so much, but looking at the blended rate of 1.08%, it's pretty easy to see that it is off somewhere, given that almost half of the account is charged a fee of 1.25% or higher.
Can you help me understand what I am missing?
Thank you","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"203","kudosSumWeight":0,"repliesCount":1,"postTime":"2022-02-26T07:22:22.282-08:00","lastPublishTime":"2022-02-26T07:22:22.282-08:00","metrics":{"__typename":"MessageMetrics","views":29018},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:3216543","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1278713":{"__typename":"ModerationData","id":"moderation_data:1278713","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1278713":{"__typename":"ForumReplyMessage","uid":1278713,"id":"message:1278713","revisionNum":1,"author":{"__ref":"User:user:425987"},"readOnly":false,"repliesCount":4,"depth":6,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1278675"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:1278713"},"body":"
For the fun of it, I also introduced a cap on the fee, so that fee will not keep increasing after the 3 million limit.
That's an interesting notion, Riny_van_Eekelen. I wonder if financial advisors do that in practice? Because, of course, presumably it IS more work managing a $20 million account than one worth \"only\" $1.5 million. Or $4 million.
Nevertheless, a worthy question to ask of such a service provider.
A further alternative would be to have an extended Fee Table in which the percentage declined for, say, every $5 million, gradually approaching zero above (you name it; but I think it'd be higher than $3 million)....
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"218","kudosSumWeight":0,"postTime":"2020-04-03T06:32:13.971-07:00","lastPublishTime":"2020-04-03T06:32:13.971-07:00","metrics":{"__typename":"MessageMetrics","views":37361},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:1278713","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDEzMjowfGludCwxMjc4ODQ4LDEyNzg4NDg","node":{"__ref":"ForumReplyMessage:message:1278848"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1278848":{"__typename":"ModerationData","id":"moderation_data:1278848","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1278848":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:403176"},"id":"message:1278848","revisionNum":1,"uid":1278848,"depth":7,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1278713"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:1278848"},"body":"
mathetes Capping fees may not be common in financial services industry. But that's not my area of expertise 🙂
When applying these kind of calculations to employee incentive plans, for example, it's quite common in the industries I've worked in (in Europe, that is), that such incentives aren't unlimited but capped at a number of times of target incentives. Obviously, the rates table will look \"slightly\" different as the incentive rate usually goes up for incremental revenues/order intake (or whatever the basis may be for the incentive).
Anyhow, just wanted to demonstrate that you can do these kind of calculations in one single formula with one helper column that holds the differential rate from the current to previous tier.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":0,"repliesCount":3,"postTime":"2020-04-03T07:06:59.338-07:00","lastPublishTime":"2020-04-03T07:06:59.338-07:00","metrics":{"__typename":"MessageMetrics","views":37320},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:1278848","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1278490":{"__typename":"ModerationData","id":"moderation_data:1278490","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1278490":{"__typename":"ForumReplyMessage","uid":1278490,"id":"message:1278490","revisionNum":1,"author":{"__ref":"User:user:425987"},"readOnly":false,"repliesCount":4,"depth":5,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1272926"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:1278490"},"body":"
I woke up this morning realizing that the solution to your request is to emulate the way the tax table works. So I've extended your table (and given it the range name \"FeeTable\" in the formula that results. Here's the new table:
And here's an example of the formula and an explanation of the components. Cell A11 contains the Account Balance for which you're going to calculate the appropriate fee and it is used in each of the VLOOKUP formulas, in each case just retrieving one of the data elements in that row of FeeTable.
=VLOOKUP(A11,FeeTable,3,1)
+
(VLOOKUP(A11,FeeTable,5,1)
*
(A11-VLOOKUP(A11,FeeTable,6,1)))
The first VLOOKUP instance retrieves the info from column C, the \"base fee\" based on reaching that tier
the second VLOOKUP retrieves the percentage to be applied
and the third VLOOKUP retrieves the number from column F, which is then subtracted from the balance itself
The formula then concludes by ;multiplying the excess $ by the applicable percentage and then adding that to what I've called the \"base fee\"
I've attached the resulting spreadsheet. Try it out. Have fun. Let me know if you have any questions.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"213","kudosSumWeight":0,"postTime":"2020-04-03T05:13:00.670-07:00","lastPublishTime":"2020-04-03T05:13:00.670-07:00","metrics":{"__typename":"MessageMetrics","views":37353},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:1278490","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwzfDEzMjowfGludCwxMjgxMTc1LDEyODExNzU","node":{"__ref":"ForumReplyMessage:message:1281175"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[{"__typename":"AttachmentEdge","cursor":"MjUuM3wyLjF8b3w1fF9OVl98MQ","node":{"__ref":"Attachment:{\"id\":\"attachment:message1278490AttachmentNumber1\",\"url\":\"https://techcommunity.microsoft.com/t5/s/gxcuf89792/attachments/gxcuf89792/ExcelGeneral/57483/1/TieredCalc.xlsx\"}"}}],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1281175":{"__typename":"ModerationData","id":"moderation_data:1281175","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1281175":{"__typename":"ForumReplyMessage","uid":1281175,"id":"message:1281175","revisionNum":1,"author":{"__ref":"User:user:367287"},"readOnly":false,"repliesCount":3,"depth":6,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1278490"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:1281175"},"body":"
These tiered fee schedules are common for financial companies. I thought a VLOOKUP could be a solution.
Appreciate the help!
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"181","kudosSumWeight":0,"postTime":"2020-04-04T05:26:46.775-07:00","lastPublishTime":"2020-04-04T05:26:46.775-07:00","metrics":{"__typename":"MessageMetrics","views":37666},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:1281175","replies":{"__typename":"MessageConnection","pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null},"edges":[{"__typename":"MessageEdge","cursor":"MjUuM3wyLjF8aXwxfDEzMjowfGludCwxMjgxMjQ3LDEyODEyNDc","node":{"__ref":"ForumReplyMessage:message:1281247"}}]},"customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1281247":{"__typename":"ModerationData","id":"moderation_data:1281247","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1281247":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:425987"},"id":"message:1281247","revisionNum":1,"uid":1281247,"depth":7,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1281175"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:1281247"},"body":"
These tiered fee schedules are common for financial companies.
And are they commonly computed in this fashion as well?
I have dealt with financial companies myself. (I am a retiree, living on my IRA.) I just always assumed that the lower fees were it (the way I first approached this). I don't recall anybody ever explaining the proposed fee as \"Well, John, we charge x.xx% on the first $100,000, a shade less on the next $400,000, another shade less up to a million, and so on. Any questions?\" And in articles on the subject, there's just the reference to \"At that level, people are usually paying x.xx%\" rather than (again) some convoluted explanation of how they get there.
On the other hand, I can see how it makes sense. The net effect of doing it as we've now done it (as you always wanted it) is that the fee very gradually declines, on a dollar by dollar basis, as the total asset base increases.
Or increases as the asset base declines. Or does it? It certainly would if you followed it mechanically. But may I ask you a customer relations question? Say I'm one of your clients, living (as I've already said) on my IRA's Required Minimum Distribution, and that as I approach my 80s, my asset base has started to decline. But I've been a client of yours for decades. And at its peak, my IRA deserved a nice low fee rate. I'm wondering if there's a clause in your contracts that entitles long-time customers to that lowest fee rate attained, even as their IRA (plus whatever other total assets you might be managing) starts to decline.
Just curious. It's kind of the converse of the \"Cap\" that @Riny_van_Eekelen incorporated in his ingenious solution.
","body@stripHtml({\"removeProcessingText\":false,\"removeSpoilerMarkup\":false,\"removeTocMarkup\":false,\"truncateLength\":200})@stringLength":"223","kudosSumWeight":0,"repliesCount":2,"postTime":"2020-04-04T06:58:39.173-07:00","lastPublishTime":"2020-04-04T06:58:39.173-07:00","metrics":{"__typename":"MessageMetrics","views":37217},"visibilityScope":"PUBLIC","placeholder":false,"originalMessageForPlaceholder":null,"isEscalated":null,"solution":false,"entityType":"FORUM_REPLY","eventPath":"category:microsoft365/category:products-services/category:communities/community:gxcuf89792board:ExcelGeneral/message:1272798/message:1281247","customFields":[],"attachments":{"__typename":"AttachmentConnection","edges":[],"pageInfo":{"__typename":"PageInfo","hasNextPage":false,"endCursor":null,"hasPreviousPage":false,"startCursor":null}}},"ModerationData:moderation_data:1275458":{"__typename":"ModerationData","id":"moderation_data:1275458","status":"APPROVED","rejectReason":null,"isReportedAbuse":false,"rejectUser":null,"rejectTime":null,"rejectActorType":null},"ForumReplyMessage:message:1275458":{"__typename":"ForumReplyMessage","author":{"__ref":"User:user:425987"},"id":"message:1275458","revisionNum":1,"uid":1275458,"depth":5,"hasGivenKudo":false,"subscribed":false,"board":{"__ref":"Forum:board:ExcelGeneral"},"parent":{"__ref":"ForumReplyMessage:message:1272926"},"conversation":{"__ref":"Conversation:conversation:1272798"},"subject":"Re: Tiered Calculation Formula Help","moderationData":{"__ref":"ModerationData:moderation_data:1275458"},"body":"
Before I take any more time delivering the formula (more likely formulas, plural) that you seem to be asking for, I want to make absolutely sure of the business requirement.
Each example you've given has been for account levels at the lower end of the spectrum. The question I asked you most recently had to do with a figure at the high end. Your answer, \"yes,\" that it was to apply each successive level's percentage, in sequence, seemed to me to be unlikely (or \"unwise\"; take your pick). Why wouldn't that person with the multi-million dollar account just expect--and be given--the lowest rate?
I wrote my question thinking it was an absurd interpretation of \"tiered calculation,\"so, frankly, was surprised when you said \"Yes! That is correct.\" And then, the fact that you responded with examples that were at the bottom end, not taking my $7,654,321 figure and working it through the maze of laddered/tiered percentages, I wondered if you'd really read my question and thought about the implications of doing it that way.
The closest example that comes to mind of another kind of \"tiered calculation\" is that of the table in our Federal Income Tax instructions where it shows how to take your taxable income and figure the taxes owed. The table (there are various ones for single married, etc, but they all have a similar form not unlike the one you have presented), looks something like the example in the attached sheet. The good thing about that is that you're able (were you to want to write your own formula) to do a single VLOOKUP to go from your taxable income [comparable to your \"account value\" in this example] to a base rate plus additional percentage for anything above. That is, it's a single lookup value that delivers the entire set of info needed to finish the calculation.
You (your company, your organization) seems to be making this far more complicated than it needs to be, because you're asking for a computation at each level [along with the slightly constricting \"it must be a single formula\" expectation) when the objective is simply to come up with a descending percentage--the converse of the tax table's increasing percentage--based on an incoming figure to base it on.
So that's why I'm coming back. It IS possible to do what you're asking, but I wonder if it's really truly what you should be asking. I hope that makes sense. And if it really is what you're asking, I'd like to hear \"why\"--why is somebody insisting on doing it that way? To what extent has thought been given to doing it in a way more comparable to the tax table example attached? It IS far simpler to explain to clients AND far simpler to implement and maintain.