I'm running into an issue with a formula type column.
My situation is that I need to calculate a value based on the previous column value. This needs to happen 12 times.
So for example:
YOE_0=100
YOE_1=YOE_0+1
YOE_2=YOE_1+1
YOE_3=YOE_2+1
etc...
But when I try to create year 11 (YOE_11=YOE_10+1) I get an error telling me the dependency limit for YOE_0 has been reached.

When I check the dependencies for YOE_0, there is only 1 dependency. See below:

Am I missing something?