![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
I am exporting data from filemaker to Excel. Each time I do it though, there are little boxes or symbols at the end of each field. I've discovered that it is because there are extra paragraph markers in some of the fields, which Excel recognizes and then creates a symbol for when I export. I have over 6000 records with many more fields, and I dont want to go back and delete these extra paragraph markers in each field. Is there an easy way to delete these either in FM or in Excel once the data is exported? thanks, Tanya |
#3
| |||
| |||
|
|
I am exporting data from filemaker to Excel. Each time I do it though, there are little boxes or symbols at the end of each field. I've discovered that it is because there are extra paragraph markers in some of the fields, which Excel recognizes and then creates a symbol for when I export. I have over 6000 records with many more fields, and I dont want to go back and delete these extra paragraph markers in each field. Is there an easy way to delete these either in FM or in Excel once the data is exported? thanks, Tanya |
\
#4
| |||
| |||
|
|
In article <1179438307.836687.65870 (AT) u30g2000hsc (DOT) googlegroups.com>, Tanya Nahman <tnahman (AT) gmail (DOT) com> wrote: I am exporting data from filemaker to Excel. Each time I do it though, there are little boxes or symbols at the end of each field. I've discovered that it is because there are extra paragraph markers in some of the fields, which Excel recognizes and then creates a symbol for when I export. I have over 6000 records with many more fields, and I dont want to go back and delete these extra paragraph markers in each field. Is there an easy way to delete these either in FM or in Excel once the data is exported? thanks, Tanya If they are just extra carriage returns at the end of the field, then they are quite easy to get rid of before exporting. There are a number of ways to do it, but probably the easiest if you need to keep exporting data on a regular basis is to create a set of Claculation field that remove these extra carriage returns, and then export these fields instead of the original ones. eg. ExportField Calculation, Text Result, Unstored = Substitute(OriginalField & "*", "{ret}*", "") where {ret} is the carriage return symbol that appears on one of the buttons in the Define Calculation window (the "backwards P"). Including the "*" in the first and second parts of the Substitute function means that it will only change the very last carriage return to a nothing (""), and will not affect any other carriage returns in the data ... not that those export as such anyway. If this is a one-off export of the data, then you can instead use the Replace command from the Records menu: - first make a BACKUP of the file - this procedure can NOT be undone if something goes wrong! - then click in the appropriate field - choose Replace from the file menu - use the Replace via Calculation option and enter the same calculation from above, ie. Substitute(OriginalField & "*", "{ret}*", "") - click OK on the Define Calculation window - double-check that the Replace window is definitely replacing the correct field and then click Replace. - repeat with other fields as necessary You should also TRY to train the users to not put the extra return on the end in the first place, but that's often like trying to teach a fish not to swim. \Helpful Harry Hopefully helping harassed humans happily handle handiwork hardships ;o) |
#5
| |||
| |||
|
|
You should also TRY to train the users to not put the extra return on the end in the first place, but that's often like trying to teach a fish not to swim. \ |
#6
| |||
| |||
|
|
On May 17, 9:25 pm, Helpful Harry <helpful_ha... (AT) nom (DOT) de.plume.com wrote: You should also TRY to train the users to not put the extra return on the end in the first place, but that's often like trying to teach a fish not to swim. \Don't forget about the return-to-leave-field feature. In layout mode, right click the field and select Field/Control:Behavior (Ctrl+Alt+K) and check Return Key next to under "Go to next object using". |
#7
| |||
| |||
|
|
Scott in SoCal wrote: On May 17, 9:25 pm, Helpful Harry <helpful_ha... (AT) nom (DOT) de.plume.com wrote: You should also TRY to train the users to not put the extra return on the end in the first place, but that's often like trying to teach a fish not to swim. \Don't forget about the return-to-leave-field feature. In layout mode, right click the field and select Field/Control:Behavior (Ctrl+Alt+K) and check Return Key next to under "Go to next object using". Or use field validation to make the entry invalid if the last character is a return (using the right() function) or if any character is a return character (using the patterncount() function). Or use the field's auto-entry calc function to always replace itself with itself after the user exits the field, but stripping out any return characters with the substitute() function. |
#8
| |||
| |||
|
|
In article <134rh3uaoplhp58 (AT) corp (DOT) supernews.com>, Howard Schlossberg howard (AT) nospam (DOT) fmprosolutions.com> wrote: Scott in SoCal wrote: On May 17, 9:25 pm, Helpful Harry <helpful_ha... (AT) nom (DOT) de.plume.com wrote: You should also TRY to train the users to not put the extra return on the end in the first place, but that's often like trying to teach a fish not to swim. \Don't forget about the return-to-leave-field feature. In layout mode, right click the field and select Field/Control:Behavior (Ctrl+Alt+K) and check Return Key next to under "Go to next object using". Or use field validation to make the entry invalid if the last character is a return (using the right() function) or if any character is a return character (using the patterncount() function). Or use the field's auto-entry calc function to always replace itself with itself after the user exits the field, but stripping out any return characters with the substitute() function. Both of these are good ways in newer versions of FileMaker, but the original person didn't say what version they were using - I always go with the simplest solution that works no matter what version ... besides, I don't have the newer versions so I don't know about those new fangled ways. ;o) |
#9
| |||
| |||
|
|
On Sat, 19 May 2007 11:10:39 +1200, Helpful Harry helpful_ha... (AT) nom (DOT) de.plume.com> wrote: In article <134rh3uaoplh... (AT) corp (DOT) supernews.com>, Howard Schlossberg how... (AT) nospam (DOT) fmprosolutions.com> wrote: Scott in SoCal wrote: On May 17, 9:25 pm, Helpful Harry <helpful_ha... (AT) nom (DOT) de.plume.com wrote: You should also TRY to train the users to not put the extra return on the end in the first place, but that's often like trying to teach a fish not to swim. \Don't forget about the return-to-leave-field feature. In layout mode, right click the field and select Field/Control:Behavior (Ctrl+Alt+K) and check Return Key next to under "Go to next object using". Or use field validation to make the entry invalid if the last character is a return (using the right() function) or if any character is a return character (using the patterncount() function). Or use the field's auto-entry calc function to always replace itself with itself after the user exits the field, but stripping out any return characters with the substitute() function. Both of these are good ways in newer versions of FileMaker, but the original person didn't say what version they were using - I always go with the simplest solution that works no matter what version ... besides, I don't have the newer versions so I don't know about those new fangled ways. ;o) Hey, if something works, why mess with it? -- FW |

#10
| |||
| |||
|
|
In article <1179438307.836687.65... (AT) u30g2000hsc (DOT) googlegroups.com>, Tanya Nahman <tnah... (AT) gmail (DOT) com> wrote: I am exporting data from filemaker to Excel. Each time I do it though, there are little boxes or symbols at the end of each field. I've discovered that it is because there areextraparagraphmarkers in some of the fields, which Excel recognizes and then creates a symbol for when I export. I have over 6000 records with many more fields, and I dont want to go back and delete theseextraparagraph markersin each field. Is there an easy way to delete these either in FM or in Excel once the data is exported? thanks, Tanya If they are justextracarriage returns at the end of the field, then they are quite easy to get rid of before exporting. There are a number of ways to do it, but probably the easiest if you need to keep exporting data on a regular basis is to create a set of Claculation field that remove theseextracarriage returns, and then export these fields instead of the original ones. eg. ExportField Calculation, Text Result, Unstored = Substitute(OriginalField & "*", "{ret}*", "") where {ret} is the carriage return symbol that appears on one of the buttons in the Define Calculation window (the "backwards P"). Including the "*" in the first and second parts of the Substitute function means that it will only change the very last carriage return to a nothing (""), and will not affect any other carriage returns in the data ... not that those export as such anyway. If this is a one-off export of the data, then you can instead use the Replace command from the Records menu: - first make a BACKUP of the file - this procedure can NOT be undone if something goes wrong! - then click in the appropriate field - choose Replace from the file menu - use the Replace via Calculation option and enter the same calculation from above, ie. Substitute(OriginalField & "*", "{ret}*", "") - click OK on the Define Calculation window - double-check that the Replace window is definitely replacing the correct field and then click Replace. - repeat with other fields as necessary You should also TRY to train the users to not put theextrareturn on the end in the first place, but that's often like trying to teach a fish not to swim. \Helpful Harry Hopefully helping harassed humans happily handle handiwork hardships ;o) |
![]() |
| Thread Tools | |
| Display Modes | |
| |