Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I have a table of data that shows information for pieces of equipment, this information is updated daily for each piece of equipment:
Date | Reading |
---|---|
1/1 | 5 |
1/2 | 3 |
1/3 | 5 |
1/4 | 1 |
I would like to be able to choose the date 1/4, and receive a value which refers to the following: (reading on 1/4 - Average of 1/1,1/2,1/3),
IF that value is < 3 the value on (1/4) table should be highlighted
Thank you in advance!!!
I would like to be able to choose the date 1/4
Would you always see this after selecting a date? and also, is date a dimension in your chart where you are looking to view this?
Yes, so if I select the date 1/4.. It'll show me all the pieces of equipment and their readings which may/may not be highlighted, based on their average of readings from the week before.
Date is a dimension, yes.
If you have all possible dates in your dashboard... then you can try this
Sum(Reading) - RangeSum(Above(Sum(Reading), 1, 7))
Or you can use The As-Of Table
I suggest using As Of Table if you are able to make small changes in the script even if you have all the dates available in your dashboard
I will take a look at this now.