Excel-Funktionen Leitfaden
Finden Sie häufig verwendete Excel-Funktionen einfach und lernen Sie deren Verwendung. Organisiert nach verschiedenen Kategorien wie Mathe-, Text-, Datums- und Logikfunktionen.
📊 Vollständiger Excel-Funktionen Leitfaden
Excel-Funktionen, die häufig in der Arbeit verwendet werden, sind nach Kategorien organisiert. Überprüfen Sie Syntax, Parameter und Beispiele jeder Funktion und kopieren Sie sie in die Zwischenablage für sofortige Verwendung.
SUM
Beschreibung
Berechnet die Summe von Zahlen.
Syntax
SUM(number1, [number2], ...)
Parameter
- number1*:Erste Zahl oder Bereich
- number2:Zusätzliche Zahlen oder Bereiche (optional)
Beispiel
=SUM(A1:A10)
Summe von A1 bis A10
AVERAGE
Beschreibung
Berechnet den Durchschnitt von Zahlen.
Syntax
AVERAGE(number1, [number2], ...)
Parameter
- number1*:Erste Zahl oder Bereich
- number2:Zusätzliche Zahlen oder Bereiche (optional)
Beispiel
=AVERAGE(A1:A10)
Durchschnitt von A1 bis A10
COUNT
Beschreibung
Zählt die Anzahl der Zellen mit Zahlen.
Syntax
COUNT(value1, [value2], ...)
Parameter
- value1*:Erster Wert oder Bereich
- value2:Zusätzliche Werte oder Bereiche (optional)
Beispiel
=COUNT(A1:A10)
Anzahl der Zellen mit Zahlen von A1 bis A10
MAX
Beschreibung
Gibt den größten Wert zurück.
Syntax
MAX(number1, [number2], ...)
Parameter
- number1*:Erste Zahl oder Bereich
- number2:Zusätzliche Zahlen oder Bereiche (optional)
Beispiel
=MAX(A1:A10)
Maximalwert von A1 bis A10
MIN
Beschreibung
Gibt den kleinsten Wert zurück.
Syntax
MIN(number1, [number2], ...)
Parameter
- number1*:Erste Zahl oder Bereich
- number2:Zusätzliche Zahlen oder Bereiche (optional)
Beispiel
=MIN(A1:A10)
Minimalwert von A1 bis A10
ROUND
Beschreibung
Rounds a number to specified digits.
Syntax
ROUND(number, num_digits)
Parameter
- number*:number
- num_digits*:num_digits
Beispiel
=ROUND(3.14159, 2)
3.14
CONCATENATE
Beschreibung
Joins several text strings into one.
Syntax
CONCATENATE(text1, [text2], ...)
Parameter
- text1*:text1
- text2:text2
Beispiel
=CONCATENATE(A1, " ", B1)
A1 and B1 joined with space
LEFT
Beschreibung
Returns specified number of characters from the left.
Syntax
LEFT(text, [num_chars])
Parameter
- text*:Source text
- num_chars:Number of characters to extract (default: 1)
Beispiel
=LEFT(A1, 5)
Left 5 characters of A1
RIGHT
Beschreibung
Returns specified number of characters from the right.
Syntax
RIGHT(text, [num_chars])
Parameter
- text*:Source text
- num_chars:Number of characters to extract (default: 1)
Beispiel
=RIGHT(A1, 3)
Right 3 characters of A1
MID
Beschreibung
Returns specified number of characters from the middle.
Syntax
MID(text, start_num, num_chars)
Parameter
- text*:Source text
- start_num*:Starting position
- num_chars*:Number of characters to extract
Beispiel
=MID(A1, 3, 5)
5 characters from position 3 of A1
LEN
Beschreibung
Returns the number of characters in text.
Syntax
LEN(text)
Parameter
- text*:Text to count characters
Beispiel
=LEN(A1)
Number of characters in A1
UPPER
Beschreibung
Converts text to uppercase.
Syntax
UPPER(text)
Parameter
- text*:Text to convert
Beispiel
=UPPER(A1)
A1 converted to uppercase
LOWER
Beschreibung
Converts text to lowercase.
Syntax
LOWER(text)
Parameter
- text*:Text to convert
Beispiel
=LOWER(A1)
A1 converted to lowercase
TODAY
Beschreibung
Returns current date.
Syntax
TODAY()
Beispiel
=TODAY()
Today's date
NOW
Beschreibung
Returns current date and time.
Syntax
NOW()
Beispiel
=NOW()
Current date and time
YEAR
Beschreibung
Extracts the year from a date.
Syntax
YEAR(serial_number)
Parameter
- serial_number*:Date value
Beispiel
=YEAR(A1)
Year of A1 date
MONTH
Beschreibung
Extracts the month from a date.
Syntax
MONTH(serial_number)
Parameter
- serial_number*:Date value
Beispiel
=MONTH(A1)
Month of A1 date
DAY
Beschreibung
Extracts the day from a date.
Syntax
DAY(serial_number)
Parameter
- serial_number*:Date value
Beispiel
=DAY(A1)
Day of A1 date
DATEDIF
Beschreibung
Calculates the difference between two dates.
Syntax
DATEDIF(start_date, end_date, unit)
Parameter
- start_date*:Start date
- end_date*:End date
- unit*:Unit (Y, M, D, etc.)
Beispiel
=DATEDIF(A1, B1, "Y")
Years between A1 and B1
IF
Beschreibung
Gibt verschiedene Werte basierend auf einer Bedingung zurück.
Syntax
IF(logical_test, [value_if_true], [value_if_false])
Parameter
- logical_test*:Zu testende Bedingung
- value_if_true:Wert wenn Bedingung wahr ist
- value_if_false:Wert wenn Bedingung falsch ist
Beispiel
=IF(A1>10, "Large", "Small")
'Groß' wenn A1>10, sonst 'Klein'
AND
Beschreibung
Returns TRUE if all arguments are TRUE.
Syntax
AND(logical1, [logical2], ...)
Parameter
- logical1*:First condition
- logical2:Additional conditions (optional)
Beispiel
=AND(A1>5, B1<10)
TRUE if A1>5 AND B1<10
OR
Beschreibung
Returns TRUE if any argument is TRUE.
Syntax
OR(logical1, [logical2], ...)
Parameter
- logical1*:First condition
- logical2:Additional conditions (optional)
Beispiel
=OR(A1>5, B1<10)
TRUE if A1>5 OR B1<10
NOT
Beschreibung
Reverses the logical value.
Syntax
NOT(logical)
Parameter
- logical*:Logical value
Beispiel
=NOT(A1>10)
TRUE if A1 is NOT greater than 10
VLOOKUP
Beschreibung
Sucht vertikal in einer Tabelle und gibt einen Wert zurück.
Syntax
VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
Parameter
- lookup_value*:Zu suchender Wert
- table_array*:Tabellenbereich zum Durchsuchen
- col_index_num*:Spaltennummer zur Rückgabe
- range_lookup:Exakte Übereinstimmung (FALSE) oder Näherung (TRUE)
Beispiel
=VLOOKUP(A1, C1:E10, 2, FALSE)
Findet A1 in C1:E10 und gibt 2. Spaltenwert zurück
HLOOKUP
Beschreibung
Searches horizontally in a table and returns a value.
Syntax
HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])
Parameter
- lookup_value*:Value to search for
- table_array*:Table range to search
- row_index_num*:Row number to return
- range_lookup:Exact match (FALSE) or approximate (TRUE)
Beispiel
=HLOOKUP(A1, C1:G3, 2, FALSE)
Find A1 in C1:G3 and return 2nd row value
INDEX
Beschreibung
Returns a value from a specific position in an array.
Syntax
INDEX(array, row_num, [column_num])
Parameter
- array*:Data array
- row_num*:Row number
- column_num:Column number (optional)
Beispiel
=INDEX(A1:C10, 3, 2)
Value at row 3, column 2 of A1:C10
MATCH
Beschreibung
Finds the position of a value in an array.
Syntax
MATCH(lookup_value, lookup_array, [match_type])
Parameter
- lookup_value*:Value to find
- lookup_array*:Array to search
- match_type:Match type (0, 1, -1)
Beispiel
=MATCH(A1, B1:B10, 0)
Position of A1 value in B1:B10
COUNTIF
Beschreibung
Counts cells that meet a condition.
Syntax
COUNTIF(range, criteria)
Parameter
- range*:Range to check
- criteria*:Condition
Beispiel
=COUNTIF(A1:A10, ">5")
Count of values greater than 5 in A1:A10
SUMIF
Beschreibung
Sums cells that meet a condition.
Syntax
SUMIF(range, criteria, [sum_range])
Parameter
- range*:Range to check condition
- criteria*:Condition
- sum_range:Range to sum (optional)
Beispiel
=SUMIF(A1:A10, ">5")
Sum of values greater than 5 in A1:A10
AVERAGEIF
Beschreibung
Averages cells that meet a condition.
Syntax
AVERAGEIF(range, criteria, [average_range])
Parameter
- range*:Range to check condition
- criteria*:Condition
- average_range:Range to average (optional)
Beispiel
=AVERAGEIF(A1:A10, ">5")
Average of values greater than 5 in A1:A10
STDEV
Beschreibung
Calculates standard deviation (sample).
Syntax
STDEV(number1, [number2], ...)
Parameter
- number1*:First number or range
- number2:Additional numbers or ranges (optional)
Beispiel
=STDEV(A1:A10)
Standard deviation of A1 to A10
PMT
Beschreibung
Calculates loan payment amount.
Syntax
PMT(rate, nper, pv, [fv], [type])
Parameter
- rate*:Interest rate
- nper*:Total number of payments
- pv*:Present value (loan principal)
- fv:Future value (optional)
- type:Payment timing (optional)
Beispiel
=PMT(5%/12, 60, 100000)
Monthly payment for 5% annual rate, 5-year, $100,000 loan
FV
Beschreibung
Calculates future value of investment.
Syntax
FV(rate, nper, pmt, [pv], [type])
Parameter
- rate*:Interest rate
- nper*:Total periods
- pmt*:Periodic payment
- pv:Present value (optional)
- type:Payment timing (optional)
Beispiel
=FV(8%/12, 120, -1000)
Future value of $1000 monthly savings at 8% annual rate for 10 years
PV
Beschreibung
Calculates present value of investment.
Syntax
PV(rate, nper, pmt, [fv], [type])
Parameter
- rate*:Interest rate
- nper*:Total periods
- pmt*:Periodic payment
- fv:Future value (optional)
- type:Payment timing (optional)
Beispiel
=PV(8%/12, 120, 1000)
Present value of $1000 monthly payments at 8% annual rate for 10 years