Skip to main content

Search For a Column Name Using a String

Examples

    [Material] = 'H2O'

Search engine (facilitated notation)

Quick notation supported. SFHub expression will look for all attributes of type Table in which a [Material ]column is defined and whose value is equal to [H20].

Studio

Quick notation supported, but correct syntax is required otherwise Studio would look for all attributes of type Table in which a column has the name contained in the attribute whose name contains the string [Material ]and whose value is equal to [H20].

Equivalent syntax in Studio:

    ['Material'] = 'H2O'
ComponentResults[Material] = 'H2O'

Search engine (facilitated notation)

Extended notation supported. SFHub expression will look for all attributes whose name contains [ComponentResults ]and of type Table in which a [Material ]column is defined and whose value is equal to [H20].

Studio

Extended notation supported but correct syntax is required otherewise Studio would look for all attributes whose name contains [ComponentResults ]and of type Table, in which a column has the name contained in the attribute whose name contains [Material ]and whose value is equal to [H20].

Equivalent syntax in Studio:

ComponentResults['Material'] = 'H2O'

SF_AnalyzerTemplate:ComponentResults[Material] = 'H2O'

Search engine (facilitated notation)

Strong notation supported. SFHub expression will look for all elements whose template name is [SF_AnalyzerTemplate] and having the attribute [ComponentResults ]of type Table in which a [Material ]column is defined and whose value is equal to [H20]. :::

Studio

Strong notation supported but correct syntax is required otherwise. Studio would look for all elements whose template name is [SF_AnalyzerTemplate] and having the attribute [ComponentResults ]of type Table in which a column has the name contained in the attribute whose name contains [Material ]and whose value is equal to [H20].

Equivalent syntax in Studio:

SF_AnalyzerTemplate:ComponentResults['Material'] = 'H2O'