Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show values in graph IF value of relating value = X

Hello,

Ive got a relatively simple question. I want to plot a certain interval:

key         interval          unit

1-            800                  Hours

1-           1000                Cycles

2-          ETC.

2-   

So In my expression definition I say: =interval.

But this way it sums up 1000 and 800 if I select for key 1.

I only want to =interval where unit is hours. How do i formulate this simple expression?

1 Solution

Accepted Solutions
sushil353
Master II
Master II

Hi,

Try:

=Sum({<unit = {'Hours'}>}interval)

HTH

Sushil

View solution in original post

3 Replies
sushil353
Master II
Master II

Hi,

Try:

=Sum({<unit = {'Hours'}>}interval)

HTH

Sushil

MayilVahanan

Hi

Try like this

=Sum({<unit = {'Hours'}>}interval)

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

Works, thanks!