Forum Discussion
ChristinePratt1
6 years agoQrew Cadet
This formula worked perfectly for me. I do have a question... If I'm working a month behind, how can I modify this formula so that instead of the $MMYYYY showing up as the same month as the [My Date Field], it shows up as a month prior to the [My Date Field]?
------------------------------
Christine Christine
------------------------------
------------------------------
Christine Christine
------------------------------
AustinK
6 years agoQrew Commander
I believe the best way would be to adjust the DateWords variable to be 1 month behind to begin with.
var date DateWords = AdjustMonth([My Date Field],-1);
That should do it for you. I tested it on one date myself and it did work.
var date DateWords = AdjustMonth([My Date Field],-1);
That should do it for you. I tested it on one date myself and it did work.
- ChristinePratt16 years agoQrew CadetThis worked perfectly! Thanks!
------Original Message------
I believe the best way would be to adjust the DateWords variable to be 1 month behind to begin with.
var date DateWords = AdjustMonth([My Date Field],-1);
That should do it for you. I tested it on one date myself and it did work.