-
Continue reading →: QUIZ GAME
The content describes how to create a trivia quiz game using Excel. It involves two sheets named “Questions” and “Score.” Users enter questions and answers, and formulas are used to check responses and count correct answers. A specific formula checks if user answers match the correct ones.
-
Continue reading →: VLOOKUP EXPLAINED
The VLOOKUP searches for a value you specify and returns a matching value from another column. The syntax is as follows. The important thing with VLOOKUP is that is only able to return values to the right of the lookup value. Above we want to return the color for the…
-
Continue reading →: FIND TOP 5 VALUES
To find the top N highest values in Excel, use the LARGE function combined with ROWS. By entering the formula =LARGE($B$2:$B$9;ROWS(A$2:A2)) in cell E4 and dragging it down, you can easily retrieve the highest values from the specified dataset. Adjust row references as needed.
-
Continue reading →: DATA VALIDATION WITH EXCLUSION LIST
To ensure users enter a valid 5-digit number while avoiding an exclusion list, apply data validation in Excel. Select the relevant cells in column A, set data validation to “Custom,” and use the formula to check for numeric input, length of five, and non-matching values from the exclusion list in…
-
Continue reading →: DATA VALIDATION
To ensure users enter a specific number of digits in a cell, utilize data validation. With input in column B restricted to three-digit numbers, an error message will display for incorrect entries. Use the formula =AND(LEN(B2)=3,ISNUMBER(B2)) to validate both the length and numerical input.
-
Continue reading →: DATA VALIDATION WITH NO DUPLICATES
To prevent duplicate product IDs during user input, implement data validation in Excel. Users can enter values in column A while column B remains empty. By applying a custom data validation formula that uses COUNTIF, entries in column B will trigger an error message if duplicates are detected.
-
Continue reading →: Data validation with drop down list
With data validation we can restrict what a user can enter into a cell. With the use of a drop down list we can force the user to make a choice, rather than manually enter a value. Above we have a list of defined fruits in column A, in column…
-
Continue reading →: DATA VALIDATION WITH WHOLE NUMBERS
Excel data validation helps control user input in cells by restricting entries to specific types. This guide focuses on limiting entries to whole numbers between 1 and 100 for a list of fruits. It outlines simple steps to set data validation for cells B7 to B12, ensuring consistency in the…
-
Continue reading →: Data validation in Excel
By using data validation in Excel we can control what goes into our cells, this makes our data more consistent. We find data validation on the Data tab, then to the right we find the icon for “Data validation”. After clicking on this a menu appears: After clicking on “Data…
-
Continue reading →: QUERY EXCEL TABLE
If we format our data as a table in Excel we can perform calculations in a rather different way than standard cell formulas. Follow below to set this up: It is also possible to enter the formula manually like this: =(Table2[@[NUMBER OF FRUITS SOLD]]/(Table2[@GOAL]))