dear team, i'm trying to filter table pragmatically, i use the below code and it is working only for equal to, how can i do the same for start with and contains operators because the below code not working for them. do i miss something switch (Operator) { case ("Contains"): objFilter.Operator = Telerik.Reporting.FilterOperator.Like; objFilter.Value = string.Format("%{0}%", FieldValue); break; case ("StartWith"): objFilter.Operator = Telerik.Reporting.FilterOperator.Like; objFilter.Value = string.Format("{0}%", FieldValue); break; case ("EqualTo"): objFilter.Operator = Telerik.Reporting.FilterOperator.Equal; objFilter.Value = string.Format("{0}", FieldValue); break; default: objFilter.Operator = Telerik.Reporting.FilterOperator.Equal; objFilter.Value = string.Format("{0}", FieldValue); break; }