Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I have seen lot of posts regarding getting the custom month sort order and I have followed those steps. I still have a problem in the sort order. The expression am using in sort is
match(FY_Month,'Oct','Nov','Dec','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep')
Only the month order in the sheet activated while document open is having the right order. I tried changing it to sheet2 and open. In that case Month order works in sheet2. If I open with Sheet1 as opening page, month order is correct in sheet1 and wrong in sheet2.
Attached is the sample qvw. Please help.
Try this:
Match(Only({1}FY_Month),'Oct','Nov','Dec','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep')
Try this:
Match(Only({1}FY_Month),'Oct','Nov','Dec','Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep')
Thank you so much. Could you explain how using Only would help in this?
It seems that there were some selections which were causing the field FY_Month to become null. I just forced FY_Month to not change based on any selections using {1}. But in order to use {1}, I need some aggregation and I used Only().
Thank you!