Skip to main content
Solved

Generate list from given dates and interval

  • September 25, 2019
  • 2 replies
  • 55 views

Forum|alt.badge.img

I have 2 dates and an interval.

I need at least to generate a list of dates between given ones with a certain interval (step).

As a maximum I need to combine list of dates with list of items.

Please refer to the picture below.

Best answer by ebygomm

A DateTimeCalculator to calculate the number of intervals between the start date, a cloner using this value +1 to make copies and a second DateTimeCalculator to create the new dates

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3427 replies
  • Best Answer
  • September 25, 2019

A DateTimeCalculator to calculate the number of intervals between the start date, a cloner using this value +1 to make copies and a second DateTimeCalculator to create the new dates


Forum|alt.badge.img
  • Author
  • 6 replies
  • September 27, 2019

A DateTimeCalculator to calculate the number of intervals between the start date, a cloner using this value +1 to make copies and a second DateTimeCalculator to create the new dates

Thank you @egomm. Works fine.