Hi,
I would like to ask about how can I show the data from the datasource out of the databand.
For example,
I got a textbox in the footer and want to just show up the first data from datasource "A" column "Project".
Any idea?
Should I input {A.Project[1]} something like that in the textbox?
Show datasource data out of databand
Show datasource data out of databand
Thx.
But I would like to ask further how about take out second and third in the column?
But I would like to ask further how about take out second and third in the column?
Show datasource data out of databand
In this case you can use following expression:
Thank you.
Code: Select all
{DataSource.GetData("Column", 0)}
Code: Select all
{DataSource.GetData("Column", 1)}
Code: Select all
{DataSource.GetData("Column", 2)}
Show datasource data out of databand
Thx for helping~