Searching for values and creating a list
Solved/Closed
kswing
Posts
4
Registration date
Friday November 18, 2016
Status
Member
Last seen
November 18, 2016
-
Nov 18, 2016 at 08:32 AM
yg_be Posts 23405 Registration date Sunday June 8, 2008 Status Contributor Last seen December 20, 2024 - Nov 18, 2016 at 03:08 PM
yg_be Posts 23405 Registration date Sunday June 8, 2008 Status Contributor Last seen December 20, 2024 - Nov 18, 2016 at 03:08 PM
Related:
- Searching for values and creating a list
- Counter strike 1.6 cheats list - Guide
- Mobile number list with name - Guide
- How to change your best friends list on snapchat to 3 - Guide
- Amd crossfire compatibility list - Guide
- Whatsapp country code list - Guide
2 responses
yg_be
Posts
23405
Registration date
Sunday June 8, 2008
Status
Contributor
Last seen
December 20, 2024
5
Nov 18, 2016 at 08:50 AM
Nov 18, 2016 at 08:50 AM
Kathryn,
I assume your SKUs are in column Q. What do you have in T2, and, perhaps, in whole column T? Where is the formula stored?
It is hard to assist you because you do not actually describe what you globally need to achieve.
I assume your SKUs are in column Q. What do you have in T2, and, perhaps, in whole column T? Where is the formula stored?
It is hard to assist you because you do not actually describe what you globally need to achieve.
yg_be
Posts
23405
Registration date
Sunday June 8, 2008
Status
Contributor
Last seen
December 20, 2024
5
Nov 18, 2016 at 09:29 AM
Nov 18, 2016 at 09:29 AM
Suggestion :
1) create the following function :
2) use following formula :
1) create the following function :
Option Explicit Function skus(inp As Range, sing_sku As String) As String Dim cell As Range skus = "" For Each cell In inp If InStr(cell, sing_sku) > 0 Then skus = skus + "|" + CStr(cell.Value) End If Next End Function
2) use following formula :
=SKUS(Q$2:Q$786,T2)
kswing
Posts
4
Registration date
Friday November 18, 2016
Status
Member
Last seen
November 18, 2016
Nov 18, 2016 at 09:42 AM
Nov 18, 2016 at 09:42 AM
Thanks, this looks interesting.. I'm really sorry but where and how do i create the function?
yg_be
Posts
23405
Registration date
Sunday June 8, 2008
Status
Contributor
Last seen
December 20, 2024
5
Nov 18, 2016 at 10:05 AM
Nov 18, 2016 at 10:05 AM
Does this help? https://support.microsoft.com/en-us/office/create-custom-functions-in-excel-2f06c10b-3622-40d6-a1b2-b6748ae8231f?ui=en-us&rs=en-us&ad=us
Don't be sorry, Kathryn.
Don't be sorry, Kathryn.
kswing
Posts
4
Registration date
Friday November 18, 2016
Status
Member
Last seen
November 18, 2016
Nov 18, 2016 at 02:49 PM
Nov 18, 2016 at 02:49 PM
You are brilliant....I read the support notes and created the function you suggested, I now have the data I want. Thank you so so much!
yg_be
Posts
23405
Registration date
Sunday June 8, 2008
Status
Contributor
Last seen
December 20, 2024
5
Nov 18, 2016 at 03:08 PM
Nov 18, 2016 at 03:08 PM
thank you for your positive feedback, it was a pleasure to help you.
Nov 18, 2016 at 09:06 AM
Thank you for replying. To clarify
Column T contains the singular list of SKU's i.e. 'PLU009'. There are 664 of these in total. Column Q is a complete list of our SKU's including those in column T (786 in total), it includes the single instance i.e PLU009 and any combination of it. e.g 'PLU009 SB009'.
Having done a simple count of the instances the SKU's (Column U) I now want to have the detail behind that count. E.g where column U shows 3, i want the data behind the count so that i can see in real terms 3 is actually PLU009, ‘PL009 SB420’ and ‘SB010 PL009 SK008’. I hope that makes sense