Creating a dashboard with filtering condition

Hi,

I have a list of buyer purchasing data which consist of total quantity of the product and due date to ship the product.

I want to create a dashboard which can show the total quantity of product that will be shipped by month (e.g. January, February โ€ฆDecember).

E.g. On the dashboard, when i click January, it will show me the total quantity of product that is due on January.

0 1 444
  • UX
1 REPLY 1

You would need to do two thingsโ€ฆ create a simple table with month names (only one column is needed). I assume that you have a date field in your table. Create a virtual column (Ref type) with an app formula into your purchasing data tableโ€ฆ
SWITCH(MONTH([Date]),
1,โ€œJanuaryโ€,
2,โ€œFebruaryโ€,
โ€ฆ
11,โ€œNovemberโ€,
โ€œDecemberโ€)
If you now add both views to your interactive Dashboar view, it should work.

Top Labels in this Space