Wednesday, September 9, 2020

Get Row Count in Powerbi Report (paginated report)

 Hi, How to get total number of rows in your report?

  1. Make sure you select a field which is NOT Nullable.
  2. Then insert a Textbox in the report
  3. Write Expression to display data in the expressions for Textbox.
  4. Expression:  =Count(Fields!EmployeeName.Value, "DataSet1")
HTH