Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Excel to recognize FoxPro memo fields?
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00393509
Message ID:
00394535
Views:
15
The quick and dirty way to export is to turn the memo into a character field with a select statement:

SELECT FLD1, FLD2, LEFT(FLDMEMO,250) AS MemFld INTO csrTest
COPY TO xlfile XL5

Note that you lose info if you have more than 250 characters in your memos (We dont).

Or, saving a few bytes:

CALC MAX(LEN(TRIM(fldMemo))) to lnMemLen
SELECT FLD1, FLD2, LEFT(FLDMEMO,lnMemLen) AS MemFld INTO csrTest
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform