Mr. Bungle Posted May 9, 2006 Share Posted May 9, 2006 I want to have a calculation that will look at a series of fields and set a flag if any one of them has been modified. I would then create a script that would find all the records that has this flag set, then export them and clear the flag. Sounds simple, but I'm at a loss as how to go about it... Quote Link to comment Share on other sites More sharing options...
comment Posted May 10, 2006 Share Posted May 10, 2006 Try a number field with an auto-entered calculation (replace existing) of: Let ( watchFields = Somefield & Anotherfield & YetAnotherfield ; 1 ) Perhaps using a timestamp field with Get (CurrentTimestamp) instead of the "1" flag would be better: then you can find records that were modified since last export, and you don't need to clear anything. Quote Link to comment Share on other sites More sharing options...
Mr. Bungle Posted May 23, 2006 Author Share Posted May 23, 2006 Comment: Thank you, thank you, thank you. Not only did you solve my problem, but your advice gave me valuable insight in to the LET function. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.