Hey @Susja ,
The issue is because within IN statement it is exepecting multiple values of a single column and not multiple columns.
SELECT vacutainer_ref, quality, [timestamp]
FROM dna_lab_biospecimen.dbo.blood_sample
WHERE quality LIKE '%under%'
AND [timestamp] BETWEEN '02-19-2021' AND '03-07-2021
So rather than having 2 columns use union statement and seperate columns as
Select c1 from t1
union
Select c2 from t2