Giovanni03
New Member
- Joined
- May 23, 2023
- Messages
- 33
- Office Version
- 365
- 2021
- Platform
- Windows
Hello!
I'm looking to see if there's a way to use VBA code to identify unique rows in my sheet. I have code that identifies unique in a column but cant seem to make it work for an entire row.
My Data has 9 columns, and two of them are the main ones that will show me that the row is unique.
For example,
My goal is to identify orders that show up only once (Column D) as well as column G stating "Service".
I'm looking to see if there's a way to use VBA code to identify unique rows in my sheet. I have code that identifies unique in a column but cant seem to make it work for an entire row.
My Data has 9 columns, and two of them are the main ones that will show me that the row is unique.
For example,
Date | Assignment #1 | location | Order # 1 | 0:10:00 | John Doe #1 | DELIVERY | Item #1 | Item Description |
Date | Assignment #2 | location | Order # 2 | 0:20:00 | John Doe #2 | Service | Item #2 | Item Description |
Date | Assignment #1 | location | Order # 1 | 0:20:00 | John Doe #1 | DELIVERY | Item #1 | Item Description |
My goal is to identify orders that show up only once (Column D) as well as column G stating "Service".