SOLVED
How to find the "is not a valid number"
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
learnalteryx
7 - Meteor
‎08-04-2023
07:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hi
I have a very basic question. Whenever I use the select tool, an error message pops up stating, "Field: is not a valid number." Could you help me understand what this means? The field in question is essentially numeric. I am trying to identify which cells might be causing this error. Could you kindly recommend a tool or method that could help me pinpoint the problematic cells?
Thank you in advance for your guidance.
Solved! Go to Solution.
Labels:
- Labels:
- Data Investigation
- Datasets
- Developer
2 REPLIES 2
17 - Castor
‎08-04-2023
07:06 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
You can use a Filter Tool with:
IsNumber()
Please refer here: https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/How-to-check-if-values-in-a-ce...
Calvin Tang
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
Alteryx ACE
https://www.linkedin.com/in/calvintangkw/
Felipe_Ribeir0
16 - Nebula
‎08-04-2023
07:18 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Here is one way that works particularly well if your input is a text field.
REGEX_Match([Value], '(\-)?(\d+)(\.\d+)?')
