Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi ,
So I have a dynamic bookmark set on current week:
{<week={"=week=Week(Today())"}>}
It works ok.
I need to put the current selected week or weeks in a chart subtitle.
This only works properly if you select weeks manually, otherwise it displays the expression used in the dynamic bookmark.
I am using getfieldselections in subtitle.
Any ideas ?
so you can use something like
=if(wildmatch(GetFieldSelections(week),'*Week(Today())*'),week(today()),GetFieldSelections(week))
hi
just put the expression:Week(Today())
in your chart title
Thanks , but it is not what I am looking for.
I need the subtitle to show the selected week/weeks , regardless of what is active : the bookmark or user selection.
For when the bookmark is active it shows the expression not the actual week.
so use
getfieldselections(Week) in your sub title
here lies the problem,
using : getfieldselections(Week) when dynamic bookmark is active shows the expression not the actual week.
so you can use something like
=if(wildmatch(GetFieldSelections(week),'*Week(Today())*'),week(today()),GetFieldSelections(week))
wow, it worked !
I guess I will research more about of this wildmatch 🙂
thanks a lot !
May be you can use Concat(Week(Today()) , ',')