I have created a table in excel which contains information on licenses, and I have created a formula which adds the value of licenses purchased in the last 30 days. The following code seems to do the trick:
=SUMIF(LicenseList[Purchase date], ">="&(today()-30), LicenseList[EURvalue])
My only problem is, that when I add new data into my table, it is not included in the result!
This is just one calculation which doesn't work - it seems that all of the calculations which are referencing the particular table, are not getting updated (I have naturally tested that the added values indeed do become part of the table).
Crossing my fingers for some help! :)