Forum Discussion
Anonymous
8 years agoNot applicable
Table visual rows count
Hello , you got any solution for adding sr. no in table visual , I stuck with same probleam like i want to show total number of rows in the table visual but for some column i used aggregate function...
- 8 years ago
Anonymous
Try with this MEASURE
Bacially try putting all the row fields inside Summarize function
MEASURE = COUNTROWS ( SUMMARIZE ( TableName[G/L Account], TableName[Customer], TableName[Assignment], TableName[Document number], TableName[Type], TableName[Posting Date], TableName[Year/Month], TableName[Year], TableName[BusA], TableName[Dos Date], TableName[Reference], TableName[PK] ) )
Zubair_Muhammad
8 years agoCommunity Champion
Anonymous
Try with this MEASURE
Bacially try putting all the row fields inside Summarize function
MEASURE =
COUNTROWS (
SUMMARIZE (
TableName[G/L Account],
TableName[Customer],
TableName[Assignment],
TableName[Document number],
TableName[Type],
TableName[Posting Date],
TableName[Year/Month],
TableName[Year],
TableName[BusA],
TableName[Dos Date],
TableName[Reference],
TableName[PK]
)
)Martaspg
1 year agoAdvocate I
You need to define a measure that count the number of distintct elements of the elements that you are using in the visual table. Try the following, for a visual table that hast N columns in it would be
COUNTROWS(GROUPBY('table'[columnA],[columnB],...,[columnN]))