function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Tony123Tony123 

Button to Insert a row of data into a table

Hello, I'm 'brand new  to Salesforce :)
 
Can someone show me ( or point me in the right direction)  an example of a script that when the button is clicked it inserts a row of data into a table.
 
 
 
Thank you 
 
 
TonnisthaTonnistha
if am getting u properly then you can use Apex Explorer or Apex Dataloader in insert,update,delete tables.

And the syntax might be like:
Insert a.AccountNumber,a.BillingState from Account a(wheer the object is Account)

Thanks
Tonnistha