Hi!
I'm using a Workflow to know how many folders I have for each month.
For that, I created a loop for each month (1 to 12) ; inside this loop I'm using the search syntax.
{LF:Name="FileName", Type="F"} & {LF:Created>="1/M/YYYY", Created<="31/M/YYYY"}
This syntax is not pretty good because some month doesn't have 31 days and the search return an error.
I can't put Created<="30/M/YYYY" because some folders are created the 31.
And sometimes, febuary have 28 or 29 days.
I tried this too but unsucess.
{LF:Name="FileName", Type="F"} & {LF:Created="*/M/YYYY"}
I tried the next one too, but for december, I'll get a bug because the month 13 doesn't exist.
{LF:Name="FileName", Type="F"} & {LF:Created>="1/M/YYYY", Created<"1/M+1/YYYY"}
How can I do?
Thanks in advance.
Regards