Forum Discussion
QuickBaseCoachD
7 years agoQrew Captain
I'm not understanding why you don't just make a table report that Groups by month, but here is a formula for a formula text field type which will convert a date to YYYYMM format.
(not tested)
ToText(Year([my date field]))
&
Right("0" & ToText(Month([My Date field])),2)
(not tested)
ToText(Year([my date field]))
&
Right("0" & ToText(Month([My Date field])),2)