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

Clairvoyance problems


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

Recommended Posts

Posted

I'm trying to make a solution with clairvoyance like the on from John Mark Osborne, it just doesn't work, i have attached the file i made if someone could tell me what i'm doing wrong.

test.fp7.zip

Posted (edited)

For starters you are complicating your life. Use a custom function to explode you text. Here's my version of it.

/*

 Name: TypeAhead

Params: text

Function:

*/

/*Builds a multi-line key that can be used in relationships using recursion*/



Let 

(

     x = Length ( text );



     If ( x > 0; 

          Left ( text ; x ) 

          & "¶" & 

         TypeAhead ( Left ( text ; x - 1 ) ) 

     )

)

/* Notes: Rob Poelking */
 

and this one 


/*

 Name: TypeAheadWords

Params: text

Function:

*/

/*Builds a multi-line key that can be used in relationships*/



Substitute ( text ; " " ; ¶ )  & ¶

/* Notes: Rob Poelking */

Now you've got your calc unstored--your relationship will never work until you store it.

You're doing text functions and returning it as a number. Return text and follow it by a "*" or some other text identifier rather than a number.

test.fp7.zip

Edited by Guest

This topic is 5997 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.