Connect with peers, share your expertise, and inspire what’s next in Smartsheet — from proven practices to practical how-to insights from fellow users and product experts.
Sign in to join the conversation:
How do i create a formula that shows there are duplicates.
I would like it to have a check box in a column showing that "Sarah Jensen" has duplicate expense submission based off Consultant Name, Date of Receipt,Total Expense.
Hi,
Here is how I worked this request -
See the screenshot - I hope this helps?
Sean
You could skip the helper column and just include the additional column criteria in a COUNTIFS instead of a COUNTIF.
.
=COUNTIFS([Consultant Name]:[Consultant Name], [Consultant Name]@row, [Date of Receipt]:[Date of Receipt], [Date of Receipt]@row, [Total Expense]:[Total Expense], [Total Expense]@row)
This will count how many rows have the same data in those 3 columns as the row the formula is currently sitting on. In your screenshot, going down the rows it would populate
2
1
We can then leverage that result in an IF statement to check your box if there are any rows that have a number higher than 1 meaning there is more than one row with matching data.
=IF(COUNTIFS(..........) > 1, 1, 0)
So the finalized formula in the checkbox column would look something like this...
=IF(COUNTIFS([Consultant Name]:[Consultant Name], [Consultant Name]@row, [Date of Receipt]:[Date of Receipt], [Date of Receipt]@row, [Total Expense]:[Total Expense], [Total Expense]@row) > 1, 1, 0)
Good job Paul.
Good morning. I am trying to create an update request to have contacts in a cell complete a voting task. I have been asking the AI what the issue is and it had good suggestions, everything it suggests is occurring on the sheet. The update request is to trigger when the "Launch update request" changes to checked. It will…
Hello, We have several automations configured to copy a row to another sheet when specific criteria are met. Recently, these automations have been intermittently failing. For example, they worked this morning but stopped working this afternoon, and then they often begin working again the following day without any changes…
I have team member specific, multi project sheet, prefiltered Reports built out and I want to have these reports automatically emailed to the team member and myself every Monday morning before I'm in the office. The reports run off of the "Last 7 days" filtered for tasks accomplished. So having them automated to run and…