'===================ABV PROJECT====================== '===================MODULE 1 ======================= Sub main () 'you can edit this macro to execute any command when loading this workbook 'next line call the routine that fill the sheet call absmain () Call newcell (3,3,"'test2") End Sub Sub newcell (i,j,argu) Cells (i,j).Formula=argu End Sub Sub absmain () 'Do not edit this macro, changes will not be saved with the workbook!!! End Sub