cancel
Showing results for 
Search instead for 
Did you mean: 

Fill Matrix from Datasource

Former Member
0 Kudos

i have multiple dataset for filling different column of Matrix

how can i "translate" multiple dataset to user data source and then filling into the matrix?

Accepted Solutions (1)

Accepted Solutions (1)

rasmuswulff_jensen
Active Contributor
0 Kudos

First of all, if you have any option to use a grid instead of a matrix, please do so.. quicker

if not

Steps:

- Add matrix with columns bound to userdatasources

- Add rows: oMatrix.AddRow()

- Call oMatrix.GetLineData(1..number of records) [To focus to correct userdatasource]

- Set value in userdatasource

- Call oMatrix.SetLineData(1... number of records) [To copy data from userdatasource to the matrix]

Answers (0)