Range ( start, stop, step )
Returns a list of numbers given the parameters
Be the first to rate this function Log in to vote
Paul - Show more from this author
Peak 14 LLC http://www.peak14.solutions |
2
3
4
5
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
Returns a list of numbers starting at "start" and stopping at "stop" incrementing by "step".
If stop will never be reached or if step is 0, an out or range error will be simulated.
Both "start" and "step" are optional. Start's default value is 0 and step's default value is either 1 or -1 depending on if start is greater or less than stop.
This is based off the python range() function.
https://www.w3schools.com/python/ref_func_range.asp
Comments
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.