Hi, You could create the formatted week yourself. First create a calculated item _WeekNumber _WeekNumber = WeekNumber('ENTRY_DATE'n) Then create the formatted week as a new calculated item. Formatted Week = Concatenate('week ', Concatenate(Concatenate(Format('_WeekNumber'n, 'BEST2.'), ' '), Format('ENTRY_DATE'n[Raw], 'YEAR4.')))
... View more