diff --git a/models/x_analysis.py b/models/x_analysis.py index d6a4b1c..d785f49 100644 --- a/models/x_analysis.py +++ b/models/x_analysis.py @@ -91,6 +91,9 @@ class XAnalysis: elif comparator == 'like': where.append(col.like(f'%{ftv[0]}%')) + elif comparator == 'in': + where.append(col.in_(ftv)) + return where def ltv_model_sql(self):