VBquery757
New Member
- Joined
- May 13, 2024
- Messages
- 2
- Office Version
- 2016
- Platform
- Windows
Using Excel 2016, I need to accomplish the following without the use of Macro or Visual Basic.
I have a column that contains the following examples obtained from an Index formula. This is the Index formula I am currently using to return these values.
=INDEX('ProjectX ABC'!B5:L42,2,6)
3.1, 3.2, 3.3
3.1
3.1, 3.2, 3.1, 3.2
3.2, 3.2, 3.1, 3.3, 3.1
3.3, 3.1, 3.3, 3.2
etc.
I need it to only return/keep one occurrence for each row.
3.1, 3.2, 3.3
3.1
3.1, 3.2
3.2, 3.1, 3.3
3.3, 3.1, 3.2
each of these rows is associated with an individual employee who worked on these respective tasks.
Thanks in advance for your help.
VBquery757
I have a column that contains the following examples obtained from an Index formula. This is the Index formula I am currently using to return these values.
=INDEX('ProjectX ABC'!B5:L42,2,6)
3.1, 3.2, 3.3
3.1
3.1, 3.2, 3.1, 3.2
3.2, 3.2, 3.1, 3.3, 3.1
3.3, 3.1, 3.3, 3.2
etc.
I need it to only return/keep one occurrence for each row.
3.1, 3.2, 3.3
3.1
3.1, 3.2
3.2, 3.1, 3.3
3.3, 3.1, 3.2
each of these rows is associated with an individual employee who worked on these respective tasks.
Thanks in advance for your help.
VBquery757