
Besser lernen dank der zahlreichen Ressourcen auf Docsity
Heimse Punkte ein, indem du anderen Studierenden hilfst oder erwirb Punkte mit einem Premium-Abo
Prüfungen vorbereiten
Besser lernen dank der zahlreichen Ressourcen auf Docsity
Download-Punkte bekommen.
Heimse Punkte ein, indem du anderen Studierenden hilfst oder erwirb Punkte mit einem Premium-Abo
This is a useful excel formula that helps.
Art: Abiturprüfungen
1 / 1
Diese Seite wird in der Vorschau nicht angezeigt
Lass dir nichts Wichtiges entgehen!

Address that identifies a cell by referring to it's column letter and row number.
Address using two cell references separated by a colon.
Reference that changes when copied across multiple cells based on the relative position of rows and columns.
Reference that does not change when copied across multiple cells.
Divides sum of values by number of arguments. AVERAGEA evaluates Boolean and text while AVERAGE ignores them.
=AVERAGE(value1, [value2, ...]) =AVERAGEA(value1, [value2, ...])
=POW(base, exponent) =POWER(base, exponent)
Calculates the value of a number (base) raised to a certain exponent.
=POW(2, 3) => 8 =POWER(2, 3) => 8
=SQRT(value)
Calculates the square root of a given number.
=SQRT(4) => 2
Rounds up to the nearest integer or multiple of the specified factor. CEILING.MATH also specifies whether the number is rounded toward or away from zero.
CEILING rounds up to nearest integer multiple of the specified factor. ROUNDUP rounds up to a number of decimal places.
=CEILING(value, [factor]) =ROUNDUP(value, [places])
=CEILING.PRECISE(value, [factor]) =CEILING.MATH(value,[factor],[mode])
=FLOOR.PRECISE(value, [factor]) =FLOOR.MATH(value, [factor], [mode])
=FLOOR(value, [factor]) =ROUNDDOWN(value,[places])
FLOOR rounds down to the nearest multiple of the factor while ROUNDDOWN rounds down to a number of decimal places.
=FLOOR(42363.33, 2) => 42362 =ROUNDDOWN(42363.33, 2) => 42363.
Rounds down to the nearest integer or multiple of the specified factor. FLOOR.MATH also specifies whether the number is rounded down toward or away from zero.
=FLOOR.PRECISE(-42363.33, 2) => - =FLOOR.MATH(-42363.33, 2,-1) => -
=MOD(dividend, divisor)
Divides a number and gives the remainder as an answer.
=MOD(42363.33,100) =>63.