OpenOffice.org: macro help
问题 In OOo Calc I need to copy a column (only the values , not the format) from one sheet to another (in the same worksheet) using a macro assigned to a button. I browsed a bit around but found nothing significant :-( 回答1: To answer the original question: use a data array, which will be significally faster on large ranges of cells Source = ThisWeek.getCellRangeByName("H12:H206") source_data = Source.getDataArray() Target = Steering.getCellRangeByName("M12:AU206").setDataArray(source_data()) 回答2: