Remove "Enter" in read text
Anonymous
Not applicable
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-07-17 12:19 AM
Hi,
I'm new in this forum.
I have some data that I have read from a website. Data is located in a Data Item. My problem is that the data have "Enter". eg.
"
industry Code
0122542255 Construction industry "
I would like my data to stand like this i my Data Item:
"Industry Code 0122542255 Construction industry"
I can not really figure out what function can help me with this.
Hope there is one here that can help.
Thanks in advance
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
06-07-17 06:26 PM
Alternatively use the Chr function for CR and LF
Replace(Replace([Your Text], Chr(10), "" ""), Chr(13), """")
