How can i show the total VC just once in my app (View)?

I have a VC that totals (sum) the column for me but it shows up in the app view for each row:

I want to show it just once.

Use a slice.

Got it. Duh! Thanks Steve

1 Like

Steve,
I am having the same issue for another table and I cannot figure it out.

Here is the raw data in my table:

3X_e_b_eb18273b136c915cada8b2253080e7f24857c609.png

I want the view in my app “card” to ONLY show once - the “Total Shipped” and percent radial gauge, but i get it shown twice because i have two entries in the raw data:

How can i show the radial gauge with the data only ONCE in my card view no matter how entries i have in the table?

You have to base the chart on a slice that includes only the rows you want included. If the user navigates to the chart view, I believe you can use LINKTOFILTEREDVIEW() to limit the rows used even further.

I am only including current day - TODAY(). However, I wan the total shown once. Because there are two entries it is showing the same total view twice:

Here is the expression i am using to get [Percent shipped to total today]:

IF( [Date Delivered to Lab] = TODAY(),
[Totals Received for today] / DECIMAL( [Totals Shipped for today]) , 0
)

Steve,
So i needed to create another table - “Totals Table” and now it works.\

Thanks for the help…

1 Like

Or just use the slice:

(
  [_THISROW]
  = MAXROW(
    "Results Table",
    "_ROWNUMBER",
    ([Date Delivered to Lab] = TODAY())
  )
)

worked PERFECT!

Thanks again!

1 Like