Helpful little tidbits.....
DEFThe cell where the level number goes should be named "lvl"
Then the formula in the cell O12, which autocalcs the base DEF should be changed from
Code:
=IF(spd>=0,15+spd,15)
To
Code:
=IF(spd>=0,15+spd+ROUNDDOWN(lvl/2,0),15+ROUNDDOWN(lvl/2,0))
This will have the Base DEF include the level modifier into that calculation in the manner in which the rules current say to do it.
Skills - Stat BonusesFor the skills if you put the following formula into the Stat Bonus column for the skill, it will automatically pull the stat bonus from the stats section
Code:
=INDIRECT(LOWER(H53),TRUE)
Lower -- This transforms the text from a given cell to all lowercase (i.e. changes "Dex" to "dex").
Indirect -- This basically takes the text that it is fed and tries to look to see if there a cell with the same name, and thus pull the data from
H53 -- this is simply the location of the cell that holds the Stat name for a give skill (i.e. H53 is the stat name for Acrobatics, H54 is the stat name for Athletics, etc) The best way is to put the formula in the first cell, then just copy/paste it into the rest of the column (the M column, since that is where the stat bonus goes.