How to get particular date of every month from current year?

Current year: 2022
Date: 16th
Output:
16/01/2022
16/02/2022
16/03/2022
16/04/2022
.
.
.
.
.
.
16/12/2022

Hi @Vinit_Mhatre ,

Is this what you were looking for?
image
image

Assign →

int_day = 16
int_year = 2022
Enumerable.Range(1,12).Select(Function(s) New DateTime(int_year,s,int_day).ToString("dd/MM/yyyy")).ToArray()

Kind Regards,
Ashwin A.K

2 Likes

date.today.tostring(“dd/MM/yyyy”).addmonth(1) should let you select the date or you could use something along the lines of VAR.tostring(“dd/MM/yyyy”)

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.