Remove None-Numeric strings from Table

linum

Active Member
Licensed User
Can somebody please help me. I'm trying to analyze a table and automatically delete all rows that are not numbers and leave only the rows that are numbers.

For example, my table might have the following data:

25
38
16
dgfdgafd
78
ukjdhg
12

How can I automatically delete "dgfdgafd" and "ukjdhg" from this example? I know I can loop through the table but I don't know what else to do.

Thanks for your help...
 

linum

Active Member
Licensed User
I found that I can use isNumber in my loop. I was able to do what I needed using isNumber.

Thanks to all...
 
Top