User inputs only numerical values in textbox name tbID, in my file, that column value is saved as numerical. However, if user input 00120 instead of 120. After attempting to remove the leading zeros, there seems to be a space before 120.
When I input Criteria1:="120" it works
tbIDf = Cint(tbID) 'Debug.Print tbIDf gives " 120" and renders my filter criteria to a blank
ActiveSheet.ListObjects("Table1").Range.AutoFilter Field:=IDN, Criteria1:="tbID"
How do I remove both the leading zeros and the " " in front of 120?

Trim()to remove the space: LTrim, RTrim, and Trim functions - PᴇʜtbID? - DamianIsNumeric- Valwrie