Macros/Calc/py018
Outdated translations are marked like this.
TDF LibreOffice Document Liberation Project Blog comunitari Weblate Nextcloud Redmine Ask LibreOffice Donazione
Descrizione
Eseguite il dispatcher per inserire una formula (in realtà qualsiasi stringa) in una determinata cella
Codice Python
def main(args=None):
# ~ NAME_SHEET = 'Sheet1'
document = XSCRIPTCONTEXT.getDocument()
sheet = document.CurrentController.ActiveSheet
# ~ <span lang="en" dir="ltr" class="mw-content-ltr">If you want any other sheet</span>
# ~ sheet = document.Sheets[NAME_SHEET]
cell = sheet['B11']
cell.Formula = '=SUM(B2:B10)'
sheet['B11:D11'].fillAuto(1, 1)
return