I am trying to setup a KPI that indicates the total of something in the data set used for the trend data.
In this case the KPI can't seem to display a Sum'ed or Max'ed value, you have to do that action in the dataset query. I already have the data that reports the totals for each day to populate the bargraph graphic on the KPI, and it seems very wasteful to be required to create the exact same dataset again, only changing SELECT DayTotal FROM Table
to SELECT SUM(DayTotal) FROM Table
Is there a way to have this calculated dataset be based off of the initial dataset so that I don't have two effectively identical datasets to maintain?