But the period which is displayed in column has the same aggregation for each of the 3 parameter values. If the user selects Quarterly, I want to show it as Q1 instead of Jan. I am able to do it by creating a string calculated field. But, with that field I am not able to calculate Period Over Period % Change. It works fine if I use the date column and stops working if I bring in the string column.
Your analysis functions as expected with the date column
(from last screenshot) When you add a text field to display the date in ‘YYYY - MM’ format instead of ‘MMM D, YYYY’ format the ‘% Change’ field no longer functions as you expect
Format the ‘period_start_date’ field to a custom value (in your case, YYYY - MM)
detail steps can be found here
Yes @Max, I had used this way. I used the lag function in my SQL Query to bring actual_value_prev_period column and then used it to calculate Period over Period Change.