Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi everyone,
I created an table visual in my power bi report by adding different columns in different table in my data model. Is there a way to show the record count of that created table visual in the report?
Please help me to get the record count of created table and show it in the report page as well. Really appreciate your help in this matter.
Thank you.
@Malsha , Create a measure like this with all the columns of table visual
countrows(Summarize(Fact, Dim[Col1], Dim2[Col2], "_1",[Mes1], "_2",[Mes2]))
Not summarized Columns as a group by of summarize and measures with new names
Hi amitchandak,
Thank you for your support.
I am adding different columns from the different tables to my visual. So could you explain in your measure that you have mentioned above (countrows(Summarize(Fact, Dim[Col1], Dim2[Col2], "_1",[Mes1], "_2",[Mes2]))) what should I take as the 'Fact'. and is this working when data filters using filterations in the report. I mean is it give the correct row count that time as well.
or can we get the table visual row count by considering one column of it?