Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
MWiciok
Creator
Creator

Dimension in Pivot Chart independent on current selection

Hello,

my set-up looks like this:

DOKU_IDWFL_STEPUSERTSTAMP_RECEIVEDTSTAMP_SENDACTIVE

1

ATim10.12.201311.12.20130
1BJohn11.12.201313.12.20130
1CSamantha13.12.201316.12.20130
1CGina13.12.201316.12.20130
1DTony16.12.20131
2ASamantha12.12.201314.12.20130
2BJohn14.12.20131
2BTony14.12.20131
3ATim15.12.20131
3AGina15.12.20131

I want a Pivot Chart with the Dimensions WFL_STEP and USER. The Functions should be TSTAMP_RECEIVED and TSTAMP_SEND. The Chart should just be visible if you select one DOKU_ID. This is possible to do for me. Now to my Problem: I want the Pivot Chart to ignore any selection on the field ACTIVE.

See attached file: I want now the Pivot Chart to show all Information to the DOKU_ID.

This might be easy to solve, but I got no solution. And ideas?

Thank you for helping me

1 Solution

Accepted Solutions
Anonymous
Not applicable

Matthias

Have you tried Set Analysis to ignore selection on ACTIVE :

     = only( { < ACTIVE=> } TSTAMP_RECEIVED  )

     = only( { < ACTIVE=> } TSTAMP_SEND  )

Best Regards,     Bill

View solution in original post

2 Replies
Anonymous
Not applicable

Matthias

Have you tried Set Analysis to ignore selection on ACTIVE :

     = only( { < ACTIVE=> } TSTAMP_RECEIVED  )

     = only( { < ACTIVE=> } TSTAMP_SEND  )

Best Regards,     Bill

MWiciok
Creator
Creator
Author

Hi Bill,

thank you for your quick response.

No, I did not. I always tried to "manipulate" the dimension.

Matthias