Indirect dataset

Is it possible to use a dataset as an indirect tag using the row and column? We have many facilities so instead of passing parameters from one container to another, it would be nice to config all of the facilities in one dataset.

Yes, you can use a dataset for indirect tag bindings. You just have to create dynamic properties somewhere that get information out of the dataset like this:try({Root Container.data}[0]["Column"], "FallbackValue")You can then use the dynamic properties in the indirect tag binding as a reference.

Great, it works! Initially couldn’t find it in the manual but eventually did under expressions syntax- dataset access. Thanks