How can I display unique lines only on a dashboard with 2 attributes?
I have a dashboard/report where I want to show a list of our projects as long as the project name is unique, and the country is unique.
For example, in the attached image, I would want the lines highlighted in pink to not show, as they are duplicates of both project and country. I want it to ignore anything like flavour, or other attributes that I have in my data set.
I'm using this formula to count duplicates of the project, but it ends up hiding when that project is happening in multiple countries.
=IF(COUNTIF(Project$1:Project1, Project1) > 1, 1)
How can I get this to work without the Pivot app?
Comments
-
I would suggest using a checkbox column with something along the lines of this in it...
=IF(COUNTIFS([Project name]$1:[Project name]@row, [Project Name]@row, Country$1:Country@row, Country@row) = 1, 1)
.
What this does is counts how many times the project name and country in the current row are duplicated in the rows above it and including the current row. If that count is 1 meaning it is the first occurrence, it will check the box.
You can then pull all rows where the box is checked to get your unique entries as well as the first entry of each duplicates.
-
THANK YOU!!
-
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.9K Get Help
- 410 Global Discussions
- 220 Industry Talk
- 458 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 136 Just for fun
- 57 Community Job Board
- 459 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 298 Events
- 37 Webinars
- 7.3K Forum Archives