Hello Everyone!
This might be very simple but I need help on how to get the value of a Required Quantity measure from a metric set/data label and pass it onto a label text using a script.
I placed below script onto the Loading event/action but I’m seeing no data on the label and getting an error ReferenceError: reqqty is not defined in developer tool.
var measure = reqqty.metricSetBindings[0].dataResult.cellset.cells[0][0].value;
label1.labelText = measure;
Appreciate it in advance!