Hi all,
When using a formula like this, then in the chart you can label a point. e.g. for point '9' will be shown as "Last 10 Days"
If([TimestampField] > FirstWorkDate(Today(), 5, $(Holiday)), 'Last 5 Days'))
But if the 'if' contains a 'then' with a calculation, is it possible to put a label simultaneously? Something like:
If([TimestampField] > FirstWorkDate(Today(), 5, $(Holiday)),
FirstWorkDate(Today(), 30, $(Holiday)) / 5,
'Last 5 Days'),
Info: [TimestampField] is used in a filter pane
Thank you.