RAYLWARD102
Well-known Member
- Joined
- May 27, 2010
- Messages
- 529
I have an access database who's content populates from our accounting database.
My excel VBA application manipulates the Access data for label printing.
I have an issue when paragraph marks appearing in my Access data (rarely). I actually cannot see the character until the data is dropped into forms.Label.caption.
The character is likely coming from when the accounting software field is populated with data followed by someone pressing 'enter' key within same field.
When I look through table data; cannot see this character. If I perform an sql query looking for this character I cannot find this character.
I've tried replace(Some_Data_with_bad_character, chr(244),"") when loading the Forms.Label.caption; doesn't work!
The reason why I want this character gone is the users try to print label with this character and it screws up the process. I need to automatically remove this unwanted character from my access database.
My excel VBA application manipulates the Access data for label printing.
I have an issue when paragraph marks appearing in my Access data (rarely). I actually cannot see the character until the data is dropped into forms.Label.caption.
The character is likely coming from when the accounting software field is populated with data followed by someone pressing 'enter' key within same field.
When I look through table data; cannot see this character. If I perform an sql query looking for this character I cannot find this character.
I've tried replace(Some_Data_with_bad_character, chr(244),"") when loading the Forms.Label.caption; doesn't work!
The reason why I want this character gone is the users try to print label with this character and it screws up the process. I need to automatically remove this unwanted character from my access database.