Best approach

srrlex

New Member
Joined
Oct 3, 2017
Messages
2
I have the following columns of data and would like to have a formula that returns the name whenever one of the corresponding fields matches a certain value.

1/7/2018 1/8/2018 1/9/2018 1/10/2018 1/11/2018 1/12/2018 1/13/2018
Person Sunday Monday Tuesday Wednesday Thursday Friday Saturday
Karen W C1 C1 C1 C1 C1 W
Bobbie W C1 C1 C1 C1 C1 W
Jessica W C1 C1 C1 C1 C1 W
Kristen W N12 N12 W W WN1 WN1
Samantha WN1 W W N12 N12 W W
Wanda W T2 T2 T2 W T2 W
Mysti W T1 T1 T1 T2 T1 W
Debbie WM1 W T1 T1 T1 T1 W
Lynne W M1 M1 M1 M1 M1 W
Kim W M1 M1 M1 M1 M1 W
Teresia W W NM1 NM1 NM1 W WM1
Dot WM2 NM1 W W W NM1 WM2
Missy W FNW1 FNW1 FNW1 FNW1 FNW1 W
Nicki FNW2 FNW2 FNW2 FNW2 FNW2 W W
Lisa W W W W W FNW2 FNW2
Payton W W W W MNW1 MNW1 W
BritB MNW1 MNW1 MNW1 MNW1 W W MNW1
Larry 0 0 0 0 0 0 0
Chanisty 0 0 0 0 0 0 0
Brianna 0 0 0 0 0 0 0

Sorry the spacing did not work out very well in the copied text above, however, there are 8 columns (name and then the 7 days of the week). I would like to have a formula that produces the associated name (just once) anytime there is a field in the array that is equal to C1. So formula result would produce a list that reads Karen, Bobbie and Jessica. I would prefer not to have a lookup statement if possible.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
I am sure one of our "formula people" will eventually come along and give you one, but I could not think of a formula to do what you wanted in the short time I had before I had to leave, so I wrote you a macro just in case you wanted to try it. The macro assume all of your values in Columns B2:H2 on down are constants (that is, they are not the result of formulas in those cells). If that is the case, then this macro should do what you want...
Code:
[table="width: 500"]
[tr]
	[td]Sub GetNameWithC1()
  Dim SearchText As String, Persons() As Variant
  SearchText = "C1"
  Columns("B:H").Replace SearchText, "#N/A", xlWhole, , False, , False, False
  Intersect(Columns("B:H").SpecialCells(xlConstants, xlErrors).EntireRow, Columns("A")).Copy Range("K1")
  Columns("B:H").Replace "#N/A", "C1"
End Sub[/td]
[/tr]
[/table]

HOW TO INSTALL MACROs
------------------------------------
If you are new to macros, they are easy to install and use. To install it, simply press ALT+F11 to go into the VB editor and, once there, click Insert/Module on its menu bar, then copy/paste the above code into the code window that just opened up. That's it.... you are done. To use the macro, go back to the worksheet with your data on it and press ALT+F8, select the macro name (GetNameWithC1) from the list that appears and click the Run button. The macro will execute and perform the action(s) you asked for. If you will need to do this again in this same workbook, and if you are using XL2007 or above, make sure you save your file as an "Excel Macro-Enabled Workbook (*.xlsm) and answer the "do you want to enable macros" question as "Yes" or "OK" (depending on the button label for your version of Excel) the next time you open your workbook.
 
Upvote 0
Rick,
I am sorry that it has taken me so long to thank you for your response, but I really appreciate you taking the time to write a macro in response to my question. Unfortunately, due to my unfamiliarity with macros, I could not take your input, expand it and make it work for what I am trying to accomplish. I realized that in my haste to get something posted, I did not describe my request very well, so I will attempt to do so more accurately with this post.
Originally, I indicated that I was trying to list the associated name whenever a “C1” was in a field. This is only partially correct. What I needed to say is that I desire to have multiple categories that can show an individual’s name whenever one of the criteria is in a field of the data. Certain categories can have multiple criteria that could be applicable, Perhaps the following grid will explain my desired results based upon the data that I originally submitted.


Desired Category Header  Clinic Transport Medicine NightMed Triage
Criteria from data set === C1 T1, T2 or T3 M1 NM1, WM1, WM2 N12
Results to list ======== Karen Wanda Lynne Teresia Kristen
Bobbie Mysti Kim Dot Samantha
Jessica Debbie Debbie


I hope this makes more sense and again I really appreciate your response. Originally, I thought that a pivot table was the best approach to get this information, but I could not figure out how to make that work either. If you have any other suggestions, I would be appreciative if you would share them with me.


Thanks!
 
Upvote 0
Desired Category Header  Clinic Transport Medicine NightMed Triage
Criteria from data set === C1 T1, T2 or T3 M1 NM1, WM1, WM2 N12
Results to list ======== Karen Wanda Lynne Teresia Kristen
Bobbie Mysti Kim Dot Samantha
Jessica Debbie Debbie

I am guessing that this is one set of criteria, with one set of results, in which case a possible formula approach:

J12: =IFERROR(INDEX($A$3:$A$22,SMALL(IF(MMULT(--ISNUMBER(MATCH($B$3:$H$22,YourList,)),{1;1;1;1;1;1;1}),ROW(A$3:A$22)-ROW(A$3)+1),ROWS(J$12:J12))),"")

K12: =IFERROR(INDEX($A$3:$A$22,SMALL(IF(MMULT(--ISNUMBER(MATCH($B$3:$H$22,MyList,)),{1;1;1;1;1;1;1}),ROW(B$3:B$22)-ROW(B$3)+1),ROWS(K$12:K12))),"")
Both array-entered, and copied down.


Excel 2010
ABCDEFGHIJK
17 Jan 20188 Jan 20189 Jan 201810 Jan 201811 Jan 201812 Jan 201813 Jan 2018YourListMyList
2PersonSundayMondayTuesdayWednesdayThursdayFridaySaturdayC1T2
3KarenWC1C1C1C1C1WT1xxx
4BobbieWC1C1C1C1C1WT2yyy
5JessicaWC1C1C1C1C1WT3
6KristenWN12N12WWWN1WN1M1
7SamanthaWN1WWN12N12WWNM1
8WandaWT2T2T2WT2WWM1
9MystiWT1T1T1T2T1WWM2
10DebbieWM1WT1T1T1T1WN12
11LynneWM1M1M1M1M1W
12KimWM1M1M1M1M1WKarenWanda
13TeresiaWWNM1NM1NM1WWM1BobbieMysti
14DotWM2NM1WWWNM1WM2JessicaLarry
15MissyWFNW1FNW1FNW1FNW1FNW1WKristenBrianna
16NickiFNW2FNW2FNW2FNW2FNW2WWSamantha
17LisaWWWWWFNW2FNW2Wanda
18PaytonWWWWMNW1MNW1WMysti
19BritBMNW1MNW1MNW1MNW1WWMNW1Debbie
20LarryyyyLynne
21ChanistyKim
22BriannaxxxTeresia
23Dot
Sheet1
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,430
Messages
6,124,846
Members
449,194
Latest member
HellScout

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top