0

I want to have a parameter that selects the same month (which is September) every year. So this Parameter dynamically changes every year but still selects September.

Ron McArthur
  • 63
  • 1
  • 2
  • 10
  • 1
    Something similar to this: =dateadd("m",1,dateserial(year(Today()),month(Today()),1)) but only selecting September as the month every year that is possible – Ron McArthur Jul 05 '17 at 02:45

1 Answers1

0

It was all about changing the month the the static date. Took me a few tweaks but I was able to figure it out. It was actually pretty easy stuff. Feel free to post other methods. Method I used was:

=dateadd("m",-1,dateserial(year(Today()),9,1))

Ron McArthur
  • 63
  • 1
  • 2
  • 10