Question on graphing data on a dashboard while using a smartsheet form

Jared P
Jared P ✭✭✭
edited 11/05/24 in Smartsheet Basics

Hello,

I am trying to graph data for production as close to real time as possible. We run a test and then use a form to populate a smartsheet. I have a dashboard pulling from that smartsheet to graph the data. I want the graph to populate based on new data entries, however the graph will only populate based on the data I select and won't continue down the sheet with new submissions.

Current Issues:

  1. The smartsheet uses automation. As soon as a cell is changed the sheet automatically adds in upper/lower limit and targets, which also get plotted.
  2. The main problem is that I can only plot the data that currently exists and the dashboard won't plot new entries as they added to the smartsheet. In the screen shot my data is being plotted down to row 5, but won't plot row 6 that was added without manually making the chart plot row 6.

What is the best way to solve this and allow my chart to plot any new data point that shows up in the column?

Best Answer

  • Thien Huynh
    edited 11/06/24 Answer ✓

    This is my idea:

    First: your sheet may have 3 more columns like this picture: RowID, RID and Report Filter

    with the RID fomulas is:

    =MATCH(RowID@row, RowID:RowID, 0)

    and the Report Filter column is:

    =IF(AND(Row# = "1-5", RID@row <= 5), 1, IF(AND(Row# = "6-10", RID@row >= 6, RID@row <= 10), 1, IF(AND(Row# = "11-15", RID@row >= 11, RID@row <= 15), 1)))

    and a sheet summary field "Row" with type Dropdown like the picture below

    and then you can create report with filter like this

    and this is your dashboard looks

    I hope this will solve your problem.

Answers