Page 1 of 1

Counting rows of a data source

Posted: Thu Oct 07, 2010 4:21 am
by albloshi
I av a datasource that is filled with some data. I av following columns
CodeNo,
Description

I showed these columns then at the end I want THE COUNT OF CODES
MEans

TOTAL NO. OF ITEMS ARE 4

My Expression is like
"TOTAL NO. OF ITEMS ARE {Count(Datasource.CodeNo)}"

but its not working

I anticipate quick response.

thanx all

Counting rows of a data source

Posted: Thu Oct 07, 2010 5:11 am
by Alex K.
Hello,

Use the following expression:

Code: Select all

TOTAL NO. OF ITEMS ARE {Totals.Count(Datasource.CodeNo)}
Thank you.