Here are a bunch of usefull excel functions, if you toy with these and get familiar than you can make a lot of cool tools in excel for your game.
Lookup - Looks up a number or text from a list, can be done in rows or columns but the list must be sorted ascending. The thing being looked up MUST be on the list.
Vlookup - Looks up a value on a list and returns the closest result, only works well with numbers. So if the list has a 0,5, and 10, and you lookup 7, it will give you what ever was next to 5, because its closest. A lot of people use this in conjuction with a defined list, (insert, name, define).
MAX - takes the maximum number from a range, usefullin conjuction with lookup/vlookup..
use the lookup range to select your data and room for more, then when using randbetween, use MAXof the list for the high number, that way as you add new data, it will be automatically included in the lookups.
MIN - useful for limitations like max dex, works just like max.
IF - This is the best one you have, you can use it for just about everything. It makes a choice based on the criteria. If this is easy for you, try thr other logic functions.
ROUND - this one is useful
I made most of my GM sheets with these, If you have any questions let me know and I will help with what I can.