I'm aware that this can be easily done using VBA, but I'd like a macroless solution if possible.
I have 2 User rows in a Shape's ShapeSheet: User.Count
and User.Loop
. User.Count
will simply store a number, and the While loop will be performed by User.Loop
using the following basic conditional:
User.Loop = IF(User.Count < 1000, SETF(GETREF(User.Count), User.Count + 1), "Loop complete!") + DEPENDSON(User.Count)
This executes to User.Count = 41
(these pulses of 41 are consistent). Is performing this type of loop possible?