Translations:Macros/Calc/py001/9/en

    From The Document Foundation Wiki

    if cell_source.Type == TEXT:

           cell.String = cell_source.String
       elif cell_source.Type == VALUE:
           cell.Value = cell_source.Value
       else:
           cell.Formula = cell_source.Formula
       return
    

    </syntaxhighlight>