How to filter out current week in a datatable?

Hi @alvin.c.apostol26

Use the below syntax

((CreatedOn_Variable.Date >= DateTime.Today.AddDays(-(CInt(DateTime.Today.DayOfWeek))) AndAlso CreatedOn_Variable.Date <= DateTime.Today.AddDays(6 - CInt(DateTime.Today.DayOfWeek))))

Hope it help!!