Hi,
I've created a statistics collector that listens to a single event and collects a few different numbers.
I wanted to create a simple plot that shows all these values as different series in the same plot, as in the below (Excel scatter) plot, but I could not figure out how to do it easily in FlexSim.
I ended up writing a calculated table with a UNION to manually pivot the table, but that was not my preferred solution :-)
SELECT Time, "Items" AS Type, Items AS [Count] FROM [Throughput] UNION SELECT Time, "Size units" AS Type, Size FROM [Throughput]
Surely there's a nice solution for this? :-)