How to display data compared to yesterday?

Hi,
I'm looking for a dashboard view.
Is there a way to display for example today's data and then show the data in percentage from yesterday like in this image?

image

Not just like that but you would create a Lens Table with formulas and use shift
You can limit to 1 day if you like
Set the date interval to Days

1st Column(display as currency)            
sum(revenue)  

2nd column(display as currency) 
sum(revenue, shift-1d)                

3rd Column (display as percent) color code 
sum(revenue, shift-1d) - sum(revenue) ) / sum(revenue) )

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.