bens Posted August 18, 2008 Posted August 18, 2008 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
Rob P Posted August 19, 2008 Posted August 19, 2008 (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 August 19, 2008 by Guest
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now