Here are 100 common HTML tags along with their typical uses:
=SUM(range)
: Adds up all numbers in a range.=AVERAGE(range)
: Calculates the average of numbers in a range.=COUNT(range)
: Counts the number of cells with numbers in a range.=MIN(range)
: Finds the smallest number in a range.=MAX(range)
: Finds the largest number in a range.=IF(logical_test, value_if_true, value_if_false)
: Returns one value if a condition is true and another if false.=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
: Searches for a value in a table and returns a corresponding value.=HLOOKUP(lookup_value, table_array, row_index_num, [range_lookup])
: Searches for a value in a table's top row and returns a corresponding value.=INDEX(array, row_num, [column_num])
: Returns the value at a specified position in a range.=MATCH(lookup_value, lookup_array, [match_type])
: Searches for a value in a range and returns its relative position.=CONCATENATE(text1, [text2], ...)
: Combines two or more strings of text.=LEFT(text, [num_chars])
: Returns a specified number of characters from the beginning of a text string.=RIGHT(text, [num_chars])
: Returns a specified number of characters from the end of a text string.=LEN(text)
: Returns the number of characters in a text string.=TRIM(text)
: Removes extra spaces from a text string.=UPPER(text)
: Converts text to uppercase.=LOWER(text)
: Converts text to lowercase.=PROPER(text)
: Capitalizes the first letter of each word in a text string.=TEXT(value, format_text)
: Converts a value to text using a specified format.=NOW()
: Returns the current date and time.=TODAY()
: Returns the current date.=YEAR(date)
: Returns the year from a date.=MONTH(date)
: Returns the month from a date.=DAY(date)
: Returns the day from a date.=DATE(year, month, day)
: Returns a date based on specified year, month, and day values.=TIME(hour, minute, second)
: Returns a time based on specified hour, minute, and second values.=SUMIF(range, criteria, [sum_range])
: Adds up numbers in a range based on a given condition.=COUNTIF(range, criteria)
: Counts cells in a range based on a given condition.=AVERAGEIF(range, criteria, [average_range])
: Calculates the average of numbers in a range based on a given condition.=IFERROR(value, value_if_error)
: Returns a specified value if a formula results in an error.=IFNA(value, value_if_na)
: Returns a specified value if a formula results in #N/A.=IFBLANK(value, value_if_blank)
: Returns a specified value if a cell is empty.=INDEX(MATCH())
: A combination to look up a value in a range based on a condition.=CHOOSE(index_num, value1, [value2], ...)
: Returns a value from a list based on an index number.=SUMPRODUCT(array1, [array2], ...)
: Returns the sum of the product of corresponding array elements.=ROUND(number, num_digits)
: Rounds a number to a specified number of digits.=ROUNDUP(number, num_digits)
: Rounds a number up, away from zero.=ROUNDDOWN(number, num_digits)
: Rounds a number down, towards zero.=INT(number)
: Rounds a number down to the nearest integer.=MOD(number, divisor)
: Returns the remainder of a division.=ABS(number)
: Returns the absolute value of a number.=SQRT(number)
: Returns the square root of a number.=POWER(number, exponent)
: Raises a number to a power.=LOG(number, [base])
: Returns the logarithm of a number to a specified base.=EXP(number)
: Returns e raised to the power of a given number.=RAND()
: Returns a random number between 0 and 1.=RANDBETWEEN(bottom, top)
: Returns a random number within a specified range.=COUNTA(range)
: Counts the number of non-empty cells in a range.=SUBTOTAL(function_num, ref1, [ref2], ...)
: Performs a subtotal calculation on a range.=SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2], [criteria2], ...)
: Adds up numbers based on multiple conditions.=COUNTIFS(criteria_range1, criteria1, [criteria_range2], [criteria2], ...)
: Counts cells based on multiple conditions.=AVERAGEIFS(average_range, criteria_range1, criteria1, [criteria_range2], [criteria2], ...)
: Calculates the average based on multiple conditions.=IF(logical_test, value_if_true, [value_if_false])
: Another form of the IF function.=IFS(logical_test1, value_if_true1, [logical_test2, value_if_true2], ...)
: Tests multiple conditions and returns the corresponding value for the first true condition.=SWITCH(expression, value1, result1, [value2, result2], ...)
: Compares an expression against multiple values and returns the corresponding result for the first match.=SUMPRODUCT(SUMIF())
: A combination of SUMPRODUCT and SUMIF.=HYPERLINK(link_location, [friendly_name])
: Creates a hyperlink.=INDIRECT(ref_text, [a1])
: Returns the value specified by a text string.=MATCH(lookup_value, lookup_array, [match_type])
: Searches for a value in a range and returns its relative position.=HYPERLINK(link_location, [friendly_name])
: Creates a hyperlink.=INDIRECT(ref_text, [a1])
: Returns the value specified by a text string.=MATCH(lookup_value, lookup_array, [match_type])
: Searches for a value in a range and returns its relative position.=INDEX(MATCH())
: A combination to look up a value in a range based on a condition.=CHOOSE(index_num, value1, [value2], ...)
: Returns a value from a list based on an index number.=SUMPRODUCT(array1, [array2], ...)
: Returns the sum of the product of corresponding array elements.
=TEXTJOIN(delimiter, ignore_empty, text1, [text2], ...)
: Combines text from multiple ranges or strings using a specified delimiter.=SUBSTITUTE(text, old_text, new_text, [instance_num])
: Replaces occurrences of a specified substring with another in a text string.=REPLACE(old_text, start_num, num_chars, new_text)
: Replaces part of a text string with another text string.=CLEAN(text)
: Removes non-printable characters from text.=UNIQUE(range)
: Returns unique values from a range.=SORT(range, [sort_column], [sort_order], [custom_headers])
: Sorts a range of values.=FILTER(range, criteria)
: Filters a range of values based on specified criteria.=TRANSPOSE(array)
: Transposes rows and columns in a range.=COUNTUNIQUE(range1, [range2], ...)
: Counts the number of unique values in multiple ranges.=IFERROR(value, value_if_error)
: Returns a specified value if a formula results in an error.=IFNA(value, value_if_na)
: Returns a specified value if a formula results in #N/A.=IFERROR(value, value_if_error)
: Returns a specified value if a formula results in an error.=SEQUENCE(rows, [columns], [start], [step])
: Generates a sequence of numbers.=RANDARRAY(rows, [columns], [min], [max])
: Generates an array of random numbers.=UNION(range1, [range2], ...)
: Combines multiple ranges into one.=WEBSERVICE(url)
: Retrieves data from a web service.=FILTERXML(xml, xpath)
- Extracts data from XML using XPath.=HYPERLINK(link_location, [friendly_name])
: Creates a hyperlink.=INDIRECT(ref_text, [a1])
: Returns the value specified by a text string.=MATCH(lookup_value, lookup_array, [match_type])
: Searches for a value in a range and returns its relative position.=INDEX(MATCH())
: A combination to look up a value in a range based on a condition.=CHOOSE(index_num, value1, [value2], ...)
: Returns a value from a list based on an index number.=SUMPRODUCT(array1, [array2], ...)
: Returns the sum of the product of corresponding array elements.=HYPERLINK(link_location, [friendly_name])
: Creates a hyperlink.=INDIRECT(ref_text, [a1])
: Returns the value specified by a text string.=MATCH(lookup_value, lookup_array, [match_type])
: Searches for a value in a range and returns its relative position.=INDEX(MATCH())
: A combination to look up a value in a range based on a condition.=CHOOSE(index_num, value1, [value2], ...)
: Returns a value from a list based on an index number.=SUMPRODUCT(array1, [array2], ...)
: Returns the sum of the product of corresponding array elements.=SEQUENCE(rows, [columns], [start], [step])
: Generates a sequence of numbers.=RANDARRAY(rows, [columns], [min], [max])
: Generates an array of random numbers.=UNION(range1, [range2], ...)
: Combines multiple ranges into one.=WEBSERVICE(url)
: Retrieves data from a web service.=FILTERXML(xml, xpath)
: Extracts data from XML using XPath.=MID(text, start_num, num_chars)
: Returns a specific number of characters from a text string, starting at the position you specify.
These formulas cover
0 Comments