コード例 #1
0
ファイル: of_stats.py プロジェクト: dave62/OpenFormula
def of_max(*number_list):
    """Return the syntax for a maximum """
    return __num_list_function("MAX", *number_list)
コード例 #2
0
ファイル: of_stats.py プロジェクト: dave62/OpenFormula
def of_average(*number_list):
    """Return the syntax for an average """
    return __num_list_function("AVERAGE", *number_list)
コード例 #3
0
ファイル: of_stats.py プロジェクト: dave62/OpenFormula
def of_sumproduct(*number_list):
    """Return the syntax for a sumproduct """
    return __num_list_function("SUMPRODUCT", *number_list)
コード例 #4
0
ファイル: of_stats.py プロジェクト: dave62/OpenFormula
def of_min(*number_list):
    """Return the syntax for a minimum """
    return __num_list_function("MIN", *number_list)
コード例 #5
0
def of_max(*number_list):
    """Return the syntax for a maximum """
    return __num_list_function("MAX", *number_list)
コード例 #6
0
def of_sumproduct(*number_list):
    """Return the syntax for a sumproduct """
    return __num_list_function("SUMPRODUCT", *number_list)
コード例 #7
0
def of_average(*number_list):
    """Return the syntax for an average """
    return __num_list_function("AVERAGE", *number_list)
コード例 #8
0
def of_min(*number_list):
    """Return the syntax for a minimum """
    return __num_list_function("MIN", *number_list)