Excel formula for Beginners – How to get Sequence of days in Excel

 

 

(Excel examples for Beginners)

In this end-to-end excel example, you will learn – Excel formula for Beginners – How to get Sequence of days in Excel.

 

Excel formula for Beginners – How to get Sequence of days in Excel

Generic formula

=SEQUENCE(days,1,start_date,step)

Explanation

To generate a series of dates by day, you can use the SEQUENCE function. In the example shown, the formula in E5 is:

=SEQUENCE(12,1,C4,1)

which generates a series of 12 dates, beginning with May 1, 2019, the date in C4.

How this formula works

The SEQUENCE function is a dynamic array function that can generate multiple results. When used by itself on the worksheet, SEQUENCE outputs an array of results that “spill” onto the worksheet in a “spill range”.

SEQUENCE can generate results in rows, columns, or rows and columns. In this example, we are asking sequence for an array of numbers that is 12 rows by 1 column, starting with the date in C4, and incrementing by 1. Because dates in Excel are just serial numbers, and the date in C4 is equivalent to 43586, SEQUENCE outputs an array like this:

{43586;43587;43588;43589;43590;43591;43592;43593;43594;43595;43596;43597}

which spills into the range E5:E16.  When formatted as dates, these values show 12 consecutive dates beginning with May 1, 2019 and ending with May 12, 2019.

Workdays only

To use SEQUENCE to generate a series of dates that are workdays only, you can wrap SEQUENCE in the WORKDAY or WORKDAY.INTL function. In the example shown, the formula in G5 is:

{=WORKDAY.INTL(C4-1,SEQUENCE(12))}

Note: this is an array formula and must be entered with control + shift + enter. In addition, because this is a multi-cell array formula, you must select all 12 cells first to enter or edit the formula.

Here, inside the WORKDAY function, we first subtract 1 day from the starting date. We do this to force WORKDAY.INTL to evaluate the start date, and to begin the sequence on the start date.

Next, we use SEQUENCE to generate 12 sequential numbers:

SEQUENCE(12)

Because the columns, start, and step arguments are all optional, this outputs an array like this:

{1;2;3;4;5;6;7;8;9;10;11;12}

Personal Career & Learning Guide for Data Analyst, Data Engineer and Data Scientist

Applied Machine Learning & Data Science Projects and Coding Recipes for Beginners

A list of FREE programming examples together with eTutorials & eBooks @ SETScholars

95% Discount on “Projects & Recipes, tutorials, ebooks”

Projects and Coding Recipes, eTutorials and eBooks: The best All-in-One resources for Data Analyst, Data Scientist, Machine Learning Engineer and Software Developer

Topics included: Classification, Clustering, Regression, Forecasting, Algorithms, Data Structures, Data Analytics & Data Science, Deep Learning, Machine Learning, Programming Languages and Software Tools & Packages.
(Discount is valid for limited time only)

Disclaimer: The information and code presented within this recipe/tutorial is only for educational and coaching purposes for beginners and developers. Anyone can practice and apply the recipe/tutorial presented here, but the reader is taking full responsibility for his/her actions. The author (content curator) of this recipe (code / program) has made every effort to ensure the accuracy of the information was correct at time of publication. The author (content curator) does not assume and hereby disclaims any liability to any party for any loss, damage, or disruption caused by errors or omissions, whether such errors or omissions result from accident, negligence, or any other cause. The information presented here could also be found in public knowledge domains.

Learn by Coding: v-Tutorials on Applied Machine Learning and Data Science for Beginners

Please do not waste your valuable time by watching videos, rather use end-to-end (Python and R) recipes from Professional Data Scientists to practice coding, and land the most demandable jobs in the fields of Predictive analytics & AI (Machine Learning and Data Science).

The objective is to guide the developers & analysts to “Learn how to Code” for Applied AI using end-to-end coding solutions, and unlock the world of opportunities!