Page 1 of 1

Apply Style to the last Line (last row) of a table

Posted: Mon Nov 29, 2010 8:20 am
by Lug16
Hi everyone...

I know that in order to apply a style to a specific row I can do a expression like this: "Line == 1"... but what if I want a style for the last row (and I do not know the number of rows for that table)? something like Line == table.rows.count - 1... :dreamer:

Thanks in advice... :byebye:

Apply Style to the last Line (last row) of a table

Posted: Tue Nov 30, 2010 12:44 am
by Alex K.
Hello,

You can use the following expression in condition:

Code: Select all

Line == DataSource.Count
Thank you.