Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 6635 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Hello hello again,

anybody knows::D:?

When I have the following record ( the numbers/values change in every new record created, but the order and other marks(letters etc) stays the same)...

SN:3222

E:015

19.4.2005 17:40

R:13,208 mm/s @ 23,2 Hz

V:14,224 mm/s @ 22,2 Hz

T:25,400 mm/s @ 17,6 Hz

VS:26,924 mm/s

A: 0 dB

Is there any function to get some particular line of data filtered automatically from that record even the values change, so I could make a filtering by choosing the line ?What calculation would do?

Thanks much more than a lot for anyone who can help.

Posted

Behind the lines in that field, you can't see 'em, but they're there, are CR signs (¶).

With "Position", you can count the how manieth ¶ is just in front of the line that you want to extract and the how manieth is just behind.

Once you determine the positions of the two ¶, you can use "Middle" to extract the text in between both.

You'd get the third line, as an example, by creating this calculation:

// Take characters from the field YourTextField

Middle ( YourTextField ;

// starting with the the 1st character behind the position of the 2nd ¶

(Position ( YourTextField ; "¶" ; 1 ; 2 ) +1 ) ;

// the number of characters equals the difference between the positions of the 2nd and the 3rd ¶

(Position ( YourTextField ; "¶" ; 1 ; 3 ) - Position ( YourTextField ; "¶" ; 1 ; 2 ) ) )

  • 1 month later...

This topic is 6635 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.