Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a calulated dimension which groups years, when it outputs the grouped year value to the screen i get the following;
1900 <= <1905
1905 <= <1910
How can i get rid of the <= < bit between the dates?
I have tried Num() and mid() the calculated dimension, but this affects the output.
Does nayone have any ideas?
Thanks
Perhaps you can remove that string with the replace function: replace(class(MyYear,5), '<= <', ' ')
Press CTRL +Shift and the Chart will show red Squares around the Legend
try drag it to minimize the text it's showing, that may do it, or you could add an object and set the color to white and place it over where it shows <= <
Regards
Alan
Perhaps you can remove that string with the replace function: replace(class(MyYear,5), '<= <', ' ')
Gysbert - thats it! - Thanks very much. Paul