I'm working on having a column whose values are the running MAX of another column.
My main table has three columns and I use the summarize
function to virtually add another column named as SUM OF EACH DATETIME
to the summarized table. Now I want to have the running MAX of the SUM OF EACH DATETIME
column in the summarized table in another new column as MAX of Sum
column. My table and its preferred columns are shown below:
I'd appreciate it if you kindly guide me how can I have the MAX of Sum column in my summarized table. I should note that the formula to calculate the SUM OF EACH DATETIME column is:
SUMMARIZE(TABLE, TABLE[DateTimeStamp],
"SUM OF EACH DATETIME", IF(COUNTROWS(TABLE)=calculate(DISTINCTCOUNT(TABLE[Name]), ALLSELECTED()),SUM(TABLE[Value]),BLANK()))