0

I have a table of data like so.

enter image description here

I would like to plot it on the same graph. I managed to get it to plot when putting it in a table that sorts on category "GreenTemp1", but what I would like is to plot it together on the same chart. Can anyone help me?

Edit: I would like it to plot it like this but it does not show anything. enter image description here

PreciousRoy
  • 83
  • 2
  • 6

1 Answers1

0

Add a separate series for each of the DeviceNames. The value expression for each series can be along the lines of:

=iif(Fields!DeviceName.Value = "GreenTemp1", sum(Fields!Value.Value), Nothing)

Obviously change the number for each series. Give each series its own legend name as well, and remove the category group for DeviceName.

BishNaboB
  • 1,047
  • 1
  • 12
  • 25