
The below adds one minute to Now 10 time :-
ForAll(
Sequence(10),#
DateAdd(
Now(),
Value,
Minutes)
)
Is it possible to adjust this so it adds 15 minutes per sequence?
Yes, using Sequence you can supply optional parameters for starting number and step count.
Sequence(10,0,15)
That will result in [0,15,30,45,60....