Thank you for your help, John.
"John Nurick" wrote:
[Quoted Text] > Hi Ken, > > Excel uses the LF (linefeed) character - Chr(10) - to indicate a newline > within a cell. Access requires the standard Windows newline, the two > characters CR and LF - Chr(13) & Chr(10). > > Usually the simplest thing to do is to import the data as is, and then > use an update query to make the changes. If the field name is XXX, > update it to > Replace([XXX], Chr(10), Chr(13) & Chr(10)) > > That will work in Access 2002 and later; post back here if you are using > an earlier version. > > On Thu, 10 Aug 2006 08:28:01 -0700, Ken <Ken[ at ]discussions.microsoft.com> > wrote: > > >Carriage return (Alt+del) in excel data in one cell is imported to small > >aquare box into the place of carriage return. Some one have magic idea to > >import same as excel? > > > >Excal source data > >I hope this work > >A) It should work this way > > > >After import to Access > >I hope this work ? A) It should work this way > > -- > John Nurick [Microsoft Access MVP] > > Please respond in the newgroup and not by email. >
|