Accessing tags in the Meta Datapoint via the scripting context
-
Is it possible to access the tags for a data point when creating a script for a meta data point? I would like to use a switch case to do different calculations based on a point's tag. For instance, if a tag is kWh I would like to perform a different conversion calculation to GJ than a point with a Litres tag. I would then add all of the GJ values together and return this value.
-
@Gord-Bond yes to get the tags for any context point (including the point running the script which can by default referenced by
my
):my.dataPointWrapper.tags
-
Amazing. Thank you very much.