Removing Data Points - Longitudinal Study

bryleek

New Member
Joined
Feb 8, 2023
Messages
6
Office Version
  1. 2021
Platform
  1. MacOS
Hi hello!
In column A I have my subject IDs and in column B I have the event name which is the time points they were seen at. Ideally, each subject ID was seen at all 3 time points (baseline, 1 year, 2 year) which is why the subject ID's will be listed multiple times, but it is okay if they were only seen at baseline and 2 year (missing 1 year). I am wondering how to remove the subjects who were not seen for at least baseline and 2 year (i.e. they only have 1 timepoint listed, or were seen at baseline and 1 year but not 2 year). I can't even begin to wrap my head around this so any help is greatly appreciated.
 

Attachments

  • Screenshot 2023-02-08 at 4.19.46 PM.png
    Screenshot 2023-02-08 at 4.19.46 PM.png
    249.2 KB · Views: 10

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Is it the case that - if a subject has a "2 year" listed against them, then they should be retained, otherwise they should be deleted? If so, and assuming that you only have 2 columns of data (as per your image) starting from cell A1, then try the following on a copy of your data. Should work fine with a limited number of records, but would need something faster if you're looking at thousands.

VBA Code:
Option Explicit
Sub Zap_no_2_Years()
    Application.ScreenUpdating = False
    Dim ws As Worksheet
    Set ws = Worksheets("Sheet1")
    
    Dim r As Range, calc As Range
    Set r = ws.Range("A1").CurrentRegion
    Dim LRow As Long
    LRow = r.Rows.Count
    
    With r
        Set calc = .Offset(1, .Columns.Count).Resize(.Rows.Count - 1, 1)
        With calc
            .FormulaR1C1 = "=COUNTIFS(R2C1:R" & LRow & "C1,RC1,R2C2:R" & LRow & "C2,""2*"")"
        End With
        .Cells(1).AutoFilter 3, 0
        .Offset(1).EntireRow.Delete
        .AutoFilter
    End With
    calc.ClearContents
    Application.ScreenUpdating = True
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,336
Messages
6,124,329
Members
449,155
Latest member
ravioli44

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