I am trying to calculate a rolling average by 30 days. However, in Tableau, I have to use window_avg(avg(variable), - 30, 0). It means that it is actually calculating the average of daily average. It first calculates the average value per day, then average the values for past 30 days. I am wondering whether there is a function in Tableau that can calculate directly rolling average, like pandas.rolling?