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.

Solved Solved
0 7 444
1 ACCEPTED SOLUTION

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โ€ฆ

View solution in original post

7 REPLIES 7

Steve
Platinum 4
Platinum 4

Use a slice.

Got it. Duh! Thanks Steve

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

Here is the raw data in my table:

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โ€ฆ

Or just use the slice:

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

worked PERFECT!

Thanks again!

Top Labels in this Space