2 relevences, multiple results, putting them together?

(imported topic written by amagewick91)

I currently have this

Q: string values of selects "Speed from DCIM_PhysicalMemory" of wmi "root\dcim\sysman"
A: 1066
A: 1066
T: 33.550 ms
 
Q: string values of selects "Capacity from DCIM_PhysicalMemory" of wmi "root\dcim\sysman"
A: 2097152
A: 2097152
T: 40.405 ms

How can I make it show as this?

Q: ??????????????????????????
A: 2097152, 1066
A: 2097152, 1066
T: 33.550 ms

(imported comment written by Lee Wei)

Please try this and see if it works for you.

(string value of property "Capacity" of it, string value of property "Speed" of it) of select objects "* from DCIM_PhysicalMemory" of wmi "root\dcim\sysman"

(imported comment written by amagewick91)

It works! Thank you