Jump to content
Salesforce and other SMB Solutions are coming soon. ×

copying content of multiple records


Pierre

Recommended Posts

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

Hi.

 

Create a found set and loop through the records. Script:

 

Code:


#create found set first if needed#

go to record [first]

loop

set 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

Archived

This topic is now archived and is closed to further replies.



×
×
  • Create New...

Important Information

Terms of Use