Hello - I have a data set where I am looking to filter out all line which are not 10 digits.
See example data attached.
After the filter I want to be left only with those lines which contained exactly 10 digits in the 'code' column, removed any which are above or below 10.
Thanks
解決済! 解決策の投稿を見る。
Hi @tom05
Here is a workflow for the task.
Filter
Length(ToString([Code]))>=10Workflow:

Hope this helps 🙂
If this post helps you please mark it as solution. And give a like if you dont mind 😀👍
Happy to help 🙂 @tom05
Cheers and Happy Analyzing 😀
Feel free to reach out if you face any other issues 🙂
@atcodedog05 solution is better. I don't know why I always turn to Regex, it's a disease.