Database Refresh

Is there a way to refresh the database automatically after a week of uploading?

Could it be emptied after a week again so another set of data could be uploaded?

0 6 183
6 REPLIES 6

Whats the reason for this, what are you trying to achieve?

Hello! I need to display a new report on the dashboard weekly. Iโ€™m not sure if I can archive the data but refreshing or uploading new data is alright.

Maybe you can use a Slice to just show the current weekโ€™s data?

Thank you so much! Will try this out.

As @Marc_Dillon said, use a slice. The formula youโ€™ll need will be something like this to show last weeks data

AND(
Year([Date Column])=Year(Today()),
Month([Date Column])=Month(Today()-1)
)

Thank you very much! The formula would be helpful. I will try it out.

Top Labels in this Space