Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi, I want to bring the FX ADj Working Forecast to last place, all the other in same sequence.
And I tried dual, match, wild match and using variables, I am getting the same order as in Pic.
Please help me out with this.
Hello, can you send the expressions that you tried ?
It should be work
best way to do that is in the script with a dual :
load dual(MYFIELD,id) as MYFIELD inline
[MYFIELD, id
ACTUAL,1
FX ADJ WORKING FC,7
FY24 BUDGET,2
FY24 FC1,3
FY24 FC2,4
FY24 FC3,5
WORKING FORECAST,6
];
But it should be work with an if in your sorting expressions :
regards
1. Dual(
[Var Analysis Baseline 1],
Index(
'ACTUAL|FY24 BUDGET|FY24 FC1|FY24 FC2|FY24 FC3|FY24 FC4|FY24 FC4 FX|Working Forecast|FX Adj Working Forecast',
[Var Analysis Baseline 1]
)
)
2.IF([Var Analysis Baseline 1]='ACTUAL',1,
IF([Var Analysis Baseline 1]='FY24 BUDGET',2,
IF([Var Analysis Baseline 1]='FY24 FC1',3,
IF([Var Analysis Baseline 1]='FY24 FC2',4,
IF([Var Analysis Baseline 1]='FY24 FC3',5,
IF([Var Analysis Baseline 1]='FY24 FC4',6,
IF([Var Analysis Baseline 1]='FY24 FC4 FX',7,
IF([Var Analysis Baseline 1]='Working Forecast',8,
IF([Var Analysis Baseline 1]='FX Adj Working Forecast',9)))))))))
Hi, Thank you
But those approaches are not working for me.
can you send a screen of your filter panel properties ?
Sure,
Is that an extension ? can you try in the "true" filter panel
Hi, i will try once. Thank you