I'm having a hard time trying to display the count total on a report based on a "DataSet" sql query result . The script will return 2 columns , the number of columns will vary. There is a table already created (table 1) to show those 2 columns but I've created another table (table 2) with just 1 column and 1 row to display only the total count of rows from table1.
The problem is that if Table 1 has 45 rows , the table 2 will also display 45 rows and on each row the number 45 when is supposed to show only 1 row with the number 45. The expression I'm using on table 2 is =COUNT(Fields!Full_Report_Path.Value, "ReportData")
How can I fix this to have only one row with the 45 number on table 2?