davidnickerson Posted October 4, 2010 Posted October 4, 2010 I'm having a bit of trouble getting my head around when to use this. FM Help gives an example (2+2 in the field; Evaulate returns 4), but the real-world examples puzzle me. It seems to be used quite a bit when calling Get (ScriptParameter), as in the following example: GetAsText ( Get ( CurrentTimeStamp ) ) & “ - Changed by: “ & Get ( AccountName ) & “ - Field: “ & Get ( ScriptParameter ) & “ Changed to: “ & Evaluate ( Get ( ScriptParameter ) ) & ¶ & Evaluate ( ( LeftWords ( Get ( ScriptParameter ) ; 1 ) & “::z_ AuditTrail” ) ) How is Evaluate ( Get ( ScriptParameter ) different than just Get ( ScriptParameter ) ? Thanks for your help.
comment Posted October 4, 2010 Posted October 4, 2010 when to use this. As rarely as possible. How is Evaluate ( Get ( ScriptParameter ) different than just Get ( ScriptParameter ) ? Example: say the script parameter contains the string "Textfield", and that you have a field named Textfield that contains the string "some text". In this case: Get ( ScriptParameter ) returns "Textfield"; Evaluate ( Get ( ScriptParameter ) returns "some text".
Recommended Posts
This topic is 5222 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