Linking Multiple Cells to another Sheet with specific criteria

lynette1953

New Member
Joined
Jun 7, 2019
Messages
3
I am having difficulty finding the best way to link cells from one sheet to another. I want to keep the rows together and only transfer info that has a blank recovery date. I have Columns B-L and 305 rows. In Column B, I have Dates of Service with other identifiable info in the columns to follow. I need to only link the rows that do NOT possess a Recovery Date (Column J) and is blank. Those are the tickets that are still missing. I want to link those missing tickets and their corresponding rows to another sheet. I've explored Advanced Filter options, Get External Data from Other Sources, and have experimented with different formulas that I have found online. Nothing seems to get me what I'm looking for. To add to my frustration...I tried to find a way to attach a screenshot on here to no avail. I am very new to VBA codes and the world of advanced Excel techniques and could really use the help!!!
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
Hi Lynette

Just to clarify you only want to return rows of data that have a blank cell in Column J, maybe this. I'm flying blind with your actual info but the solution is the same. In my example your data is in Sheet1 and returning rows in Sheet2.

If you use a table formula version you can add more than 305 rows without changing your formula.

  1. Convert your data to a table with CTRL+T
  2. Copy each formula into each column and drag down 1000 rows, so you can add up to 1000 rows of data from Sheet1


Book1
BCDEFGHIJKL
2Dates of ServiceFirst NameLast NameAddress1Address2EmailWebsiteMobileRecovery DatesCostTotal
31/06/2019Name1Last1Add12ADD1someone@gmail.com1www.mrexcel.com1234561/06/2019100110
42/06/2019Name2Last2Add22ADD2someone@gmail.com2www.mrexcel.com1234575055
53/06/2019Name3Last3Add32ADD3someone@gmail.com3www.mrexcel.com123458200220
64/06/2019Name4Last4Add42ADD4someone@gmail.com4www.mrexcel.com1234595/06/2019300330
75/06/2019Name5Last5Add52ADD5someone@gmail.com5www.mrexcel.com1234602/06/20196066
86/06/2019Name6Last6Add62ADD6someone@gmail.com6www.mrexcel.com123461120132
97/06/2019Name7Last7Add72ADD7someone@gmail.com7www.mrexcel.com1234623/06/2019240264
108/06/2019Name8Last8Add82ADD8someone@gmail.com8www.mrexcel.com1234633033
119/06/2019Name9Last9Add92ADD9someone@gmail.com9www.mrexcel.com1234648/06/20196571.5
1210/06/2019Name10Last10Add102ADD10someone@gmail.com10www.mrexcel.com12346510/09/20194044
1311/06/2019Name11Last11Add112ADD11someone@gmail.com11www.mrexcel.com123466300330
1412/06/2019Name12Last12Add122ADD12someone@gmail.com12www.mrexcel.com1234675661.6
Sheet1



Book1
ABCDEFGHIJK
1Dates of ServiceFirst NameLast NameAddress1Address2EmailWebsiteMobileRecovery DatesCostTotal
22/06/2019Name2Last2Add22ADD2someone@gmail.com2www.mrexcel.com1234570$50.00$55.00
33/06/2019Name3Last3Add32ADD3someone@gmail.com3www.mrexcel.com1234580$200.00$220.00
46/06/2019Name6Last6Add62ADD6someone@gmail.com6www.mrexcel.com1234610$120.00$132.00
58/06/2019Name8Last8Add82ADD8someone@gmail.com8www.mrexcel.com1234630$30.00$33.00
611/06/2019Name11Last11Add112ADD11someone@gmail.com11www.mrexcel.com1234660$300.00$330.00
712/06/2019Name12Last12Add122ADD12someone@gmail.com12www.mrexcel.com1234670$56.00$61.60
Sheet2
Cell Formulas
RangeFormula
A2{=IF(ROWS(A$2:A2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Dates of Service],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(A$2:A2))))}
B2{=IF(ROWS(B$2:B2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[First Name],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(B$2:B2))))}
C2{=IF(ROWS(C$2:C2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Last Name],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(C$2:C2))))}
D2{=IF(ROWS(D$2:D2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Address1],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(D$2:D2))))}
E2{=IF(ROWS(E$2:E2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Address2],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(E$2:E2))))}
F2{=IF(ROWS(F$2:F2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1,SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(F$2:F2))))}[/COLOR][/XD][/XR][XR][XD]G2[/XD][XD][COLOR=red]{=IF(ROWS(G$2:G2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Website],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(G$2:G2))))}[/COLOR][/XD][/XR][XR][XD]H2[/XD][XD][COLOR=red]{=IF(ROWS(H$2:H2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Mobile],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(H$2:H2))))}[/COLOR][/XD][/XR][XR][XD]I2[/XD][XD][COLOR=red]{=IF(ROWS(I$2:I2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Recovery Dates],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(I$2:I2))))}[/COLOR][/XD][/XR][XR][XD]J2[/XD][XD][COLOR=red]{=IF(ROWS(J$2:J2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Cost],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(J$2:J2))))}[/COLOR][/XD][/XR][XR][XD]K2[/XD][XD][COLOR=red]{=IF(ROWS(K$2:K2)>COUNTIF(Table1[[Recovery Dates]:[Recovery Dates]],""),"",INDEX(Table1[Total],SMALL(IF(Table1[[Recovery Dates]:[Recovery Dates]]="",ROW(Table1[[Recovery Dates]:[Recovery Dates]])-ROW(Table1[#Headers])),ROWS(K$2:K2))))}[/COLOR][/XD][/XR][XR][XD=cs:2][COLOR=red]Press CTRL+SHIFT+ENTER to enter array formulas.[/COLOR][/XD][/XR][/RANGE]
 
Upvote 0

B

C
D
E
F
G
H
I
J
K
L
Appt Dt
Beg Tm
Fee Slip
Pat Name
Md Rc
Event
Rendering
Sts
Recovery Date
Other Services
Notes
5/31/2019
10:30A
Y
Doe, John
1234567
Office Visit 15
Smith MD, Jane
Kept
6/10/2019
Xray
5/31/2019
11:00A
Brown, James
1234568
Office Visit 15
Smith MD, Jane
Kept

<tbody>
</tbody>
Thanks so much for your reply!!! I have some questions though. First of all, how do I add these formulas in? Is this just added to the column header using the options to the left of the text (the one with the X, the checkmark, and the fx)? Or is this applied using conditional formatting?

Secondly, I just wanted to clarify what my table looks like to assist in the formula setup. I have a spreadsheet for each day showing what appts were Kept. I then have to verify for accuracy using fee slips collected for that date. Fee slips that are missing I have to track down and verify if patient actually showed for that date. If the fee slips are missing after 1 week, then I would like for these appts to be marked in red and moved to another spreadsheet to start investigation. Each date will have a different number of rows. I have found a formula using conditional formatting to mark rows in red based on whether there is a blank in the Recovery Date column, but I have to manually apply it after 1 week (which is fine but it would be great if I could make this happen all at once). =AND($J2=””,$B2<today()) spreadsheet.
<TODAY())
I really appreciate your help with this. I feel like I’m on the cusp of understanding all of this, but that I’m missingsomething obvious.

</today())>

 
Upvote 0
You need to add a space either side of < and >. Otherwise the software thinks you're posting HTML code & treats it as such.

I have amended your formula for you
 
Last edited:
Upvote 0

Forum statistics

Threads
1,213,483
Messages
6,113,919
Members
448,533
Latest member
thietbibeboiwasaco

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