Lets say I have a table with the following structure which is generated from a SQL query datasource:
GROUP | RUNTIME
A 03/23/23 01:40PM
A 03/23/23 01:40PM
B 03/23/23 01:40PM
Note that the runtime column is a string, not a date. Also note that in this example, runtime will always be the same for all rows as it is populated via a sysdate
call in the source query.
I know that I can easily create a bar chart with counts of GROUP but what I would like to do is display the RUNTIME column in the visualization header. To do so, I tried creating a parameter from the RUNTIME column, adding it to the sheet, and then to the header but it always show up as ‘all’.
Thanks in advance for any help!