Forum Discussion
Correct Row Count ( Example file attached)
- Anonymous2 years ago
Hi StuartSmith ,
Please update your measure.
Count Rows = VAR AllRows = COUNTROWS(FILTER(ALLSELECTED('Master Lookup Table'),[Closed before]=0)) Return AllRowsBest Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi StuartSmith ,
referring to your original question: To count the rows in the visual you will have to create a measure - using ADDCOLUMNS(SUMMARIZE( - to create a virtual tablewhich is the same as the visual table and then count the rows of that table.
All the same fields from the visual will have to be included in the virtual table and then the correct filtering applied to mimic the table visual.
I advise testing with a simplified version of your table to start with, for example, the fields from the visual plus one measure, and if you can get that to work, build it up.