Pierre Posted March 19, 2005 Share Posted March 19, 2005 I'm trying to manipulate two fields within my inventory database-"current" and "previous". I need to move the values in the current field to the previous field.I can cut the values from current and paste it into previous, but this one record at a time will be very tedious. Is there a way to do this in one shot? Any ideas would be greatly appreciated. Link to comment Share on other sites More sharing options...
Maarten Witberg Posted March 19, 2005 Share Posted March 19, 2005 Hi. Create a found set and loop through the records. Script: Code: #create found set first if needed#go to record [first]loopset field ["previous", "current"]go to record [exit after last, next]end loop You will now end up with the same (current) values in Previous and Current. kjoe Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.