Forum Discussion
Anonymous
3 years agoNot applicable
Create new summary table
Hi, I have a table of sites and various metrics, and I created a calculated column to define 'Query age' What I need is a new table that summarise query age > 1 months for each site, i....
- 3 years ago
try to create a new table with the code below:
Table =ADDCOLUMNS(VALUES(TableName[Site]),">1 month",CALCULATE(COUNTROWS(FILTER(TableName,TableName[Query age] <>"<1 month"))))I tried and it works like this:
FreemanZ
3 years agoSuper User
try to create a new table with the code below:
Table =
ADDCOLUMNS(
VALUES(TableName[Site]),
">1 month",
CALCULATE(
COUNTROWS(
FILTER(
TableName,
TableName[Query age] <>"<1 month"
)
)
)
)
I tried and it works like this:
- Anonymous3 years agoNot applicable
Brilliant - thank you 🙂
- FreemanZ3 years agoSuper User
Anonymous You are welcome. Is it qualified as a solution to your question?