Hi,
my data is organized like this:
Process
| State | Variant
| Time | Measurement Value |
---|
P1 | working | V1 | 0,1 | 38543 |
P1 | working | V1 | 0,2 | |
... | ... | ... | ... | ... |
P2 | paused | V1 | 0,1 | 543 |
... | ... | ... | ... | .. |
P2 | paused | V2 | 0,1 | 694 |
.. | .. | .. | .. | .. |
Now i want to use a line chart which displays the measurement value over time. One line should be used for every existing combination of Process State and Variante. In the case of the table above there would be 3 combinations: P1-working-V1; P2-pause-V1 and P2-paused-V2.
How can i achieve that?
I attached a qvw file with my projekt, in which the linechart only shows lines for the different processes and not the process-state-variant combination. Since this is a german project here the translation:
Prozess = Process
Zustand = State
Variante = Variant
Zeit = Time
Leistung = measurement value
Thank you for your help.