Hi,
I am trying to use a narrative text to display the current filters that the user is applying on a dashboard.
For this I am using a narrative text box and calling the session variables that hold the prompt filter values.
I am facing some issues with the display of the date prompt filters when the dashboard is opened initially
When I use the following expression in the narrative text:
[br/][b]Start Date:[/b] @{startDate}    [b]End Date:[/b] @{endDate}
The filters are showing as below:
Start Date: 2019/01/01 00:00:00 End Date: 2019/08/04 00:00:00
While when the using the following expression:
[br/][b]Start Date:[/b] @{startDate}[YYYY-MM-DD]    [b]End Date:[/b] @{endDate}[YYYY-MM-DD]
The filters are showing as below
Start Date: YYYY-MM-DD End Date: YYYY-MM-DD
Can you please advise on how should the session variables be called in order for the dates to be displayed correctly when the dashboard is opened?
Thank you.