I am using some recycled code from the MSDN for creating Excel sheets (I
cannot find the original msdn page). basically this code creates an object
named oExcelSheet with this object (yes I am aware there is more to it) I
can insert data into the sheet by doing oExcelSheet.cells(5,2).value = "Ref
Month". So I understand how it basically works, where it says .value I can
change it to .font to do different things to the sheet. Does anyone know
where I can find all the different commands? IE. .cells, .value and all the
good ra ra?