I have 6 tables and am creating 6 separate sheets of visuals per table. I want to have a measure that just shows a simple row count aggregate. For naming consistency, I want to create one measure named 'OLs' (order lines) that dynamically switches out based on the table selected (via visual tab selection or something similar).
I have been manually creating a measure in each table, but PBI doesn't allow different measures with the same name. The requirement is to have one consistent name.
I guess the other option is to create a column in each table's query using M, but I've heard that this method isn't recommended for aggregation.
OLs = COUNTROWS(Table1)