Kaydet (Commit) eb27a63a authored tarafından Tamás Zolnai's avatar Tamás Zolnai Kaydeden (comit) Tamás Zolnai

[API Change] PivotMedian: Add median to pivot table function type

Change-Id: I675e81b5c13832ac0ff893a6e080241e6f1c8fd5
üst 99dbbecb
......@@ -56,6 +56,13 @@ published enum GeneralFunction
AVERAGE,
/**
* median of all numerical values is calculated.
* @since LibreOffice 5.3
*/
MEDIAN,
/** maximum value of all numerical values is calculated.
*/
MAX,
......
......@@ -11484,14 +11484,15 @@ module com {
SUM = 2,
COUNT = 3,
AVERAGE = 4,
MAX = 5,
MIN = 6,
PRODUCT = 7,
COUNTNUMS = 8,
STDEV = 9,
STDEVP = 10,
VAR = 11,
VARP = 12
MEDIAN = 5,
MAX = 6,
MIN = 7,
PRODUCT = 8,
COUNTNUMS = 9,
STDEV = 10,
STDEVP = 11,
VAR = 12,
VARP = 13
};
/** @deprecated */ published interface XConsolidationDescriptor {
interface ::com::sun::star::uno::XInterface;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment