hi!
i am trying to get a workflow to generate a folder structure that includes the month.
I also need it to display in financial year order (july through june)
This of course is neither alphabetic or numeric sort, so i figure i'll need to prefix the month name such as;
01_july
02_August
the bit that's bothering me is how to take the month (eg,i have '09' from a pattern match) and turn it into a part of the path (eg '03_September)
Obviously i could have a conditional decision with 12 branches, but there has to be a neater way.
I'd really rather not use an external sql table if i can avoid it.
Any suggestions appreciated
Mark