When I do a simple operation like this
fib = Table[Fibonacci[i], {i, 15}]
and then look to find the position of a certain value, everything works fine:
indices = Flatten@Position[fib, _?(# > 99 &)]
{12, 13, 14, 15}
However, once I make the table Dynamic and try the same thing the position function does not seem to work:
Slider[Dynamic@n, {1, 10000, 1}, Appearance -> "Labeled"]
fib = Dynamic@Table[Fibonacci[i], {i, n}];
indices = Flatten@Position[fib, _?(# > 99 &)]
{}
Upon further investigation the reason seems to be that Dynamic turns the Table into a nested list (that isn't actually nested, i.e. it still appears as {"List"} and not {{List}}).
For example, without Dynamic fib[[1]] returns the first element and fib[[2]] returns the second. However, with Dynamic, fib[[1]] returns the entire list and fib[[2]] returns an error that
Part 2 of {1,1,2,3,5,8,13,21,34,55,89,144,233,377,610} does not exist.
What is going on here and how do I find the position of elements in a Dynamic Table?

Dynamic[List[...]]. Not sure what is your goal but you can:Dynamic[ fib = ... ; indices = ...]and later you can use those variables – Kuba Nov 19 '15 at 12:40