Hi,
I have a Sharepoint list with this format
| ID | Event | Argument |
| 1 | Login | |
| 2 | Login | |
| 3 | Search | Rome |
| 4 | Search | Paris |
| 5 | Search | Test |
I want to make a column chart that will show the top 10 argument searched...
how can I do? I tried to use a with function but it doesn't work
ClearCollect(
collAnalyticsSearches,
With(
{ wSearch: Filter(db_Analytics,Event="Search") },
GroupBy(db_Analytics,"Arguments","countSearches"),
CountRows(countSearches)
)
)
what am I doing wrong?
Thank you