Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi I am Prepare one Line Chart.
Dimension = Week and Merchant
Measure = Total Order Count
In Dimension Week Value is from 1 to 53 but instead of this Existing Value I want Looks like (Week1, Week2, Week3, Week4 )
So how this can be possible.
Thanks & Regards
concatenate 'Week' word before your dimension field in dimension expression:
= 'Week' & Your_Week_Dimension_Field
In Script, you can use :
'Week' & Your_Week_Dimension_Field as "New Week Field"
Regards,
Aditya