LeftItems ( text ; numberOfItems )
Returns same result as LeftValues without the training return
Average rating: 4.7 (27 votes) Log in to vote
Kirk Bowman MightyData http://www.mightydata.com |
White
Blue" ; 1 )
Function definition: (Copy & paste into FileMaker's Edit Custom Function window)
The new LeftValues function in FileMaker 7 returns a result with a trailing return character. Here is a quote for the LeftValues function from the FileMaker 7 online help.
"Each returned value ends with a carriage return, allowing lists to be easily concatenated."
It is more time consuming to remove the trailing return when extracting a value from a list than to add a return when concatenating lists. The LeftItems custom function works the same as the LeftValues function without the trailing return.
Comments
Travis, Denver, CO Sep 26, 2016 |
||
As currently written, LeftItems ( "one-¶two" ; 1 ) will return "one" and not "one-". Here's an alternative function that returns "one-": Let ( output = LeftValues ( text ; numberOfItems ) ; Left ( output ; Length ( output ) - 1 ) ) |
||
Note: these functions are not guaranteed or supported by BrianDunning.com. Please contact the individual developer with any questions or problems.