Hi, I need to create a dynamic selection for dates, allowing users to choose from today, H+1, or H+2. How can I implement this? Thank you!
- Create a table to hold your choices.
- Add an “index” column, add 3 rows and have the values being 0, 1, 2.
- Create a Math column, with the formula being
N + I
with N being Now, and I being the Index column. - Choose the format you want for the outcome of Math column, and add a template column, pointing to the Math column to lock that format in (otherwise your choice value will be in Zulu format).
- Use the template as the source of your choice component.
Thank you for your solution