If it isn’t numeric, the Convert.ToInt32 wouldn’t work.
The proper syntax would be (Convert.ToInt32.item.ToString).IsNumeric
But you don’t need all that. Just do item.IsNumeric or item.ToString.IsNumeric
okay ill give that a try