Hi @Harshita
Use this formula for every column:
1/. Column: @StartPeriod
= IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '01', 'Jan' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '02', 'Feb' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '03', 'Mar' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '04', 'Apr' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '05', 'May' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '06', 'Jun' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '07', 'Jul' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '08', 'Aug' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '09', 'Sep' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '10', 'Oct' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '11', 'Nov' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod) , 2 ) = '12', 'Dec' + '-' + Right( Report.FormatPeriod(@StartPeriod), 4 ) , '' ) ) ) ) ) ) ) ) ) ) ) )
2/. Column: @StartPeriod, -1
= IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '01', 'Jan' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '02', 'Feb' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '03', 'Mar' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '04', 'Apr' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '05', 'May' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '06', 'Jun' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '07', 'Jul' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '08', 'Aug' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '09', 'Sep' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '10', 'Oct' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '11', 'Nov' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -1) , 2 ) = '12', 'Dec' + '-' + Right( Report.FormatPeriod(@StartPeriod, -1), 4 ) , '' ) ) ) ) ) ) ) ) ) ) ) )
3/. Column: @StartPeriod, -2
= IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '01', 'Jan' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '02', 'Feb' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '03', 'Mar' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '04', 'Apr' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '05', 'May' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '06', 'Jun' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '07', 'Jul' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '08', 'Aug' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '09', 'Sep' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '10', 'Oct' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '11', 'Nov' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , IIf( Left( Report.FormatPeriod(@StartPeriod, -2) , 2 ) = '12', 'Dec' + '-' + Right( Report.FormatPeriod(@StartPeriod, -2), 4 ) , '' ) ) ) ) ) ) ) ) ) ) ) )
……..
Best Regards,
NNT