Forum Discussion
spencer_g
9 years agoHelper I
Convert Errors to 0
Hi Everyone, I have data that is updated automatically, and the original inputs are keyed on by people filling out an online questionaire. One of the questions is for zip code, and sometimes vis...
Greg_Deckler
9 years agoCommunity Champion
You could create a custom column like this:
= try Number.From([Zip]) otherwise 0
Then remove your other column.
You could also just change your Data Type in your zip to Text.
spencer_g
9 years agoHelper I
Thanks smoupre! I need to have the data as a number for some of the analysis that I am doing, so I think your first suggestion will work perfectly only I will need to retain the original column. Thanks!
- Greg_Deckler9 years agoCommunity Champion
Cool, let me know if it works for you.