vote up 0 vote down star

I have a table in a RDLC report which is utilized as a subreport, and the first column of this table is a static string. Does anyone know how I can determine if a row is the first in the table. I tried using "=First("My String")" but it didn't work.

flag

3 Answers

vote up 0 vote down check

Aggregate functions work with "Scope', referring to the paragraph scope in this MSDN article, might help...

http://msdn.microsoft.com/fr-fr/library/ms252112(VS.80).aspx"

From what I understand you may have to define a scope or try =First("MyString", Nothing).

link|flag
vote up 0 vote down

=IIF((RowNumber(Nothing) Mod <>)=0)

<> Indicate No of Rows Which you want To Display

link|flag
vote up 1 vote down

Looking at the link supplied by ThatBloke in his answer, I found the RowNumber command.

Which means that this worked:

=IIf(RowNumber(Nothing)=1,"myString", "")
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.