NAMC = DCOUNT(ARRAY.TEST,@FM)
FOR N = NAMC TO 1 STEP -1
IF ARRAY.TEST<N> = “” THEN DEL ARRAY.TEST<N>
NEXT N
Or
CHANGE @FM:@FM TO @FM IN ARRAY.TEST and then check for first and last null values.
--
IMPORTANT: T24/Globus posts are no longer accepted on this forum.
To post, send email to jB...@googlegroups.com
To unsubscribe, send email to jBASE-un...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/jBASE?hl=en
ARRAY.TEST = TRIM(ARRAY.TEST,@FM)
--
Hi,
Try this
ARRAY.TEST = TRIM(ARRAY.TEST,'','D')
ARRAY.TEST = TRIM(ARRAY.TEST,@FM)Dan