I have to apply a condition, if Month is Less than Or Equal to current month.
For Ex, if I run the bot now it has to run for Jan, Feb month as current month is feb.
If I run the Bot in Mar then it should run for Jan, Feb, Mar.
Assign: currentMonth = Now.Month
For Each: monthIndex in Enumerable.Range(1, currentMonth)
If: monthIndex <= currentMonth
Then:
Your Bot Execution
End If