Hello JChandler22,

This is a common mistake when using the Worksheet_Change event. At the beginning of your code use Application.EnableEvents = False
and at the end add Application.EnableEvents = True. This prevents the cascade event you are seeing. When you change a cell it triggers the Worksheet_ChangeEvent. This tell Excel to ignore events while the code is running.

Sincerely,
Leith Ross