Ultimately I am trying to figure out the percent difference between the current 14 day average data point and the data point 14 day previous, but when I do the calculation manually they don't match. Any ideas?
1 answer
well we would really need to see the workbook and all the calculations - but you are using a moving average which is a table calculation - think you would be better off with an lod or some other technique - think about using
{fixed: sum ( if date>=today() and date>= dateadd('day',-13,today()) then [new cases] end } to get the current 14 days somethin similar for the pervious - if you don't want to go that route pleas post your book so we have a starting poiont
thanks
Jim