🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 02-18-2018 12:53 AM
(1415 views)
Hi
My data set values are
Numbers
1101
1001
0000
1000
0101
1010
And i want to replace the '0' with 3 and '1' with 2 .
How can we do that?
Thanks in advance.
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Convert to character with the put() function, use the translate() function to do the replacements, and convert back to numeric by using the input() function.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Convert to character with the put() function, use the translate() function to do the replacements, and convert back to numeric by using the input() function.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks mate,
Yes Its working fine.