Skip to Main Content
HCL Domino Ideas Portal

Welcome to the #dominoforever Product Ideas Forum! The place where you can submit product ideas and enhancement request. We encourage you to participate by voting on, commenting on, and creating new ideas. All new ideas will be evaluated by HCL Product Management & Engineering teams, and the next steps will be communicated. While not all submitted ideas will be executed upon, community feedback will play a key role in influencing which ideas are and when they will be implemented.

For more information and upcoming events around #dominoforever, please visit our Destination Domino Page

Status Under Consideration
Workspace Domino Designer
Categories @Formulas
Created by Guest
Created on Aug 20, 2020

Add an @Formula to generate a list of consecutive integers

To get a list of consecutive integers in formula language without using an @For loop, you currently have to get creative using predefined lists of digits, the permutation operators and @Subset. It would be handy to have an @Formula that gives you a list of consecutive integers of a specified length with an optional start value (defaulting to 0).

  • Attach files
  • Guest
    Reply
    |
    Sep 4, 2020

    That's fine if you know how many numbers you need in advance, but it's awkward if the amount is determined by a variable at runtime. It would also be nice to be able to get the exact amount you need without having to take a @Subset (or knowing the prime factors).

  • Guest
    Reply
    |
    Aug 27, 2020

    What the heck is wrong with numbers := 0:20:40:60 *+ 0:5:10:15 *+ 1:2:3:4:5; ?