vulkan-vegas.pl, will be more efficient and more effective if they use Google Sheets for logging, tracking and reporting data. For those who want to become more efficient at calculations and reports, one must include some basic formulas in their arsenal of codes. Below are the 10 Google Sheets formulas for regular use.
Google Sheets is one excellent alternative to MS Office. People who make reports can get the most benefit from Google Sheets Functions. Those who create dashboards and business reports, like people who do analytics for marketing or online casinos like 1. IF
The IF function is a conditional formula where you are telling the sheet to return a value of a condition that is met. For example, you can tell the sheet that if the value of one cell is less than 10, the cell where the formula is on will return the value of “Less Than 10.” As such, you are looking at words and not numbers. You can also use this column for your pivot reports to show frequency statistics. Choose the cell where you want to execute the query, double click and ENTER =IF(statement, what if true, what if false).2. COUNT
You use COUNT to count the number of cells that have content in an array or group of cells. It is useful if:- You want a cell to show how many data points you have in a group of arrays.
- You want to count how many cells have content to ensure that you did not leave anything blank.
3. COUNTIF
The COUNTIF function only counts a cell as one value if it meets a condition. For example, take a look at the list below.- Green
- Blue
- Blue
- Green
- Red
- Pink
- Green – 2
- Blue – 2
- Red – 1
- Pink – 1
4. VLOOKUP
VLOOKUP means vertical lookup. It is a function you use to look for a corresponding value in a set of columns that match your criterion. For example, let us say you have two columns. The first column is an ID number, and the second one is a name, and you have more than 1,000 employees listed. Now, what you have on another sheet is a list of 10 ID numbers, and you need the names. Instead of sifting through 1,000 names, you use VLOOKUP, and the sheet will return the corresponding name for each of your 10 IDs.5. SUM
The SUM function is what you use to get the sum of a set of numbers. Typically, people would type each number on a calculator, then press the plus sign and then continue. What if you have 1,000 numbers to add? If you want to get the total value of numbers in a group of cells, the SUM function is what you want. It takes only seconds, and you get an answer to what you need. Example:=SUM(A1;A3;A8)6. SUMIF
You use the SUMIF function if you want to add numbers only if their corresponding data meet a certain criterion. Below is an example (just imagine there are thousands of them):- Green – 11
- Red – 12
- Green – 15
- Red 6
- Pink – 12
7. SUMPRODUCT
You use these Google Sheets Functions if you want to get the average of some data set, but you do not have the raw data. Instead of getting the average of the average, which is inaccurate, you get the sumproduct. Below is an example data of sales (each entry is one sale):- 1. Team A – $1,000
- 2.Team A – $1,000
- 3. Team A – $1,000
- 4. Team A – $1,000
- 5. Team A – $1,000
- 6. Team B – $3,000
- 7. Team B – $3,000
- 8. Team B – $3,000
- 9. Team B – $1,000
- 10. Team B – $1,000
- Team A | 5 Sales | Average $1,000
- Team B | 5 Sales | Average $2,200