Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions, OSR, & D&D Variants
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
Million Dollar TTRPG Kickstarters
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions, OSR, & D&D Variants
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Upgrade your account to a Community Supporter account and remove most of the site ads.
Community
General Tabletop Discussion
*Pathfinder & Starfinder
How the XP tables work (Forked thread: Consumable item pricing)
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="CapnZapp" data-source="post: 4617033" data-attributes="member: 12731"><p>Here's my stab at an Excel formula (for xp). Using it is a two-step process.</p><p></p><p>Step 1. Assuming column A holds the level as previously discussed (i.e. A1 is the header, A3-A31 holds the numbers 1-30), copy the following into cell B31:</p><p></p><p>[code]=1000*MAX(A31-1;0)+250*IF(A31>2;SUM(A$2:A29))+250*IF(A31>6;SUM(A$2:A25))+500*IF(A31>10;SUM(A$2:A21)+1)+1000*IF(A31>14;SUM(A$2:A17))+2000*IF(A31>18;SUM(A$2:A13))+4000*IF(A31>20;SUM(A$2:A11))-5000*IF(A31>21;SUM(A$2:A10))+7000*IF(A31>22;SUM(A$2:A9))+15000*IF(A31>26;SUM(A$2:A5))[/code]</p><p>...and hit enter.</p><p></p><p>Step 2. Then CTRL+C that cell (B31), mark the entire column (cells B2:B31), and paste.</p><p></p><p>Voila (I hope)!</p><p></p><p>As you can see, I'm using the SUM function to compress each band of Delta 2 increase. (=Not having to have one entry for each level, which would kind of have made it look stupid to have a function at all...). This only works if you do copy-paste as instructed, so A31 becomes A30 for the cell above, and so on.</p><p></p><p>You will get individual cell errors when each such reference reach A0, but this doesn't impact the final sums (in my Excel, anyway).</p><p></p><p>There are three kinks that make the function bigger:</p><p>#1: the extra +1 at 11th level (as this marks the beginning of a new "band", I don't need a whole extra IF)</p><p>#2: the jump at 21, requiring the extra IF(>20)</p><p>#3: the "backwards" jump at 22, requiring the extra IF(>21). Notice how this is subtracted from the total.</p><p></p><p>Otherwise, you can see how the numbers multiplied always are the difference between the old and new delta 2 "band" number.</p><p></p><p>I have a vague suspicion you could condense down the formula even further (not having to repeat all those IF(SUM). </p><p></p><p>I simply don't have the Excel-fu to even begin to understand how to accomplish this, however. (Merely utilizing SUM in this way required some googling... on "number series excel" to be exact <img src="https://cdn.jsdelivr.net/joypixels/assets/8.0/png/unicode/64/1f642.png" class="smilie smilie--emoji" loading="lazy" width="64" height="64" alt=":)" title="Smile :)" data-smilie="1"data-shortname=":)" /> )</p></blockquote><p></p>
[QUOTE="CapnZapp, post: 4617033, member: 12731"] Here's my stab at an Excel formula (for xp). Using it is a two-step process. Step 1. Assuming column A holds the level as previously discussed (i.e. A1 is the header, A3-A31 holds the numbers 1-30), copy the following into cell B31: [code]=1000*MAX(A31-1;0)+250*IF(A31>2;SUM(A$2:A29))+250*IF(A31>6;SUM(A$2:A25))+500*IF(A31>10;SUM(A$2:A21)+1)+1000*IF(A31>14;SUM(A$2:A17))+2000*IF(A31>18;SUM(A$2:A13))+4000*IF(A31>20;SUM(A$2:A11))-5000*IF(A31>21;SUM(A$2:A10))+7000*IF(A31>22;SUM(A$2:A9))+15000*IF(A31>26;SUM(A$2:A5))[/code] ...and hit enter. Step 2. Then CTRL+C that cell (B31), mark the entire column (cells B2:B31), and paste. Voila (I hope)! As you can see, I'm using the SUM function to compress each band of Delta 2 increase. (=Not having to have one entry for each level, which would kind of have made it look stupid to have a function at all...). This only works if you do copy-paste as instructed, so A31 becomes A30 for the cell above, and so on. You will get individual cell errors when each such reference reach A0, but this doesn't impact the final sums (in my Excel, anyway). There are three kinks that make the function bigger: #1: the extra +1 at 11th level (as this marks the beginning of a new "band", I don't need a whole extra IF) #2: the jump at 21, requiring the extra IF(>20) #3: the "backwards" jump at 22, requiring the extra IF(>21). Notice how this is subtracted from the total. Otherwise, you can see how the numbers multiplied always are the difference between the old and new delta 2 "band" number. I have a vague suspicion you could condense down the formula even further (not having to repeat all those IF(SUM). I simply don't have the Excel-fu to even begin to understand how to accomplish this, however. (Merely utilizing SUM in this way required some googling... on "number series excel" to be exact :) ) [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*Pathfinder & Starfinder
How the XP tables work (Forked thread: Consumable item pricing)
Top