Hi Guys,
appendpipe [stats avg(*) as *] , adds a new row with the average of all the rows of the respective column.
I wanted to get hold of this average value . So I did appendpipe [stats avg(*) as average(*)] . So that I can use the "average" as a variable . This is all fine. The issue is when i do the appendpipe [stats avg(*) as average(*)] , I get new columns added, with the names average(colname) and the row that existed before , with appendpipe [stats avg(*) as *] gets deleted..
How do I keep the averages row as it is , still be able to use average(*) , so that I can get the average value in a variable? is it possible?
... View more