Landsoul - Thank you very much for your dedication and hard work to this ongoing project, keep being awesome!
Just a quick suggestion, however. Those they may be running Excel on an older computer may have a decent wait time for the SEP calculation. You can make this subroutine near-instant (on any machine) by adding:
Sub SEP()
'
' SEP Macro
' Calculates Strength Equivalency Points
'
'
Application.ScreenUpdating = False
range("Z41").Select
Selection.Copy
range("AM29").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
By including
Application.ScreenUpdating = False, the workbook won't jump around and look fancy all over the place but I'm sure min/maxing your code is something you'd like to do as well!