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.
Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!
-
THANK YOU!!
-
Happy to help!
Come see me in Seattle at ENGAGE 2024! I will be at the 10xViz partner booth throughout as well as the "Lets Talk About Community" Meet & Eat table on Tuesday from 11:45am - 12:45pm!
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.9K Get Help
- 377 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 289 Events
- 33 Webinars
- 7.3K Forum Archives