Year: 2019

Excel Formula MIN/MAX functions

Use the MIN function to find the smallest number in a range of values, and the MAX function to find the highest. The syntax for these functions are: =MIN(range); =MAX(range) where range equals the list of numbers you’re calculating. Common uses of this function are; for example, find the highest/lowest grade in a classroom; the […]

Excel Formula IF statement

The IF function (also more commonly called IF statements) work like this: IF, then, else. Basically, that means if a condition is true, then do one thing, else/otherwise do something else. For example, if the puppy is a Labrador, then buy a blue collar, otherwise/else, buy a red collar. The syntax (the way the commands […]

Excel Formula TRIM

This function removes extra (or padded) spaces that infect your data as a result of user error, downloading data from an external source such as the Internet, or importing data from another computer system. And you don’t have to “tell Excel” where the spaces are located in the string of text in each cell; it […]

Excel Formula AND/OR

AND and OR are common functions in the programmers’ environment, also referred to as Boolean operators (along with NOT). AND means that all conditions in the query must be true; OR means that at least one condition must be true. For example, looking for an applicant with MS Word AND MS Excel experience means the […]

Back To Top