Index Filtering
This is done using one or more <vdl-index-filter> elements within a <vdl-table-column> element. 
Using the View Designer
- In the Palette > Components group, click and drag an Index Filter element onto the Table Column.
- Select the Index Filter element on the artboard, and in the Attributes pane: 
    - Edit the Data > SET attribute to select the Set.
- Edit the Value attribute to specify the value to display in the table column.
 
Using the Code editor
In the following example:- the CustomerNameandCustomerPropensityarrays are displayed in the same table.
- CustomerNameis indexed by- (CUSTOMERS).
- CustomerPropensityis indexed by- (CUSTOMERS, CHANNELS).
CHANNELS set to 1 for the 
 CustomerPropensity column. 
 <vdl-table page-mode="paged" page-size="10" width="400">
	       <vdl-table-column entity="CustomerName"></vdl-table-column>
        <vdl-table-column entity="CustomerPropensity" heading="Propensity (SMS)">
            <vdl-index-filter set="CHANNELS" value="1">
            </vdl-index-filter>
</vdl-table-column>
<vdl-table page-mode="paged" page-size="10" width="400">
    <vdl-table-column entity="CustomerName"></vdl-table-column>
    <vdl-table-column entity="CustomerPropensity" 
                      vdl-repeat="=c in scenario.entities.CHANNELS"
                      heading="='Propensity (' + c.label + ')'">
        <vdl-index-filter set="CHANNELS" 
                          value="=c.value">
        </vdl-index-filter>
    </vdl-table-column>
</vdl-table>© 2001-2023 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.
 
