User inputs a date.
Based on this date, I have to get the first day of each month of the year in this date.
Example:
User input: 2/1/2014
From that, I need an expression that will get me -
1/1/2014
3/1/2014
4/1/2014
and so on.
I need the expression for each of the dates (not all together).
Basically if someone can help me figure out how to get one of the dates, I can do the rest.
EDIT - I got it guys. Sorry I wasn't clear enough.
=CDate("1/1/" + Year(Now).ToString)
=CDate("2/1/" + Year(Now).ToString)
=CDate("3/1/" + Year(Now).ToString)
and so on.