FCS Unit 3
FCS Unit 3
11.Explain the process to protect work book and work sheets in Microsoft
Excel
Date and Time Functions: NOW, TODAY, DATE, YEAR, MONTH, DAY,
DATEDIF, NETWORKDAYS.
In Excel, cell references are used to refer to data in cells. There are three
main types:
Relative Reference (e.g., A1): The reference adjusts when you copy or
move the formula to another cell.
Mixed Reference (e.g., $A1 or A$1): Either the row or the column is fixed,
while the other is relative. $A1 keeps the column fixed, and A$1 keeps the
row fixed.
Filtering: Filtering displays only the rows that meet certain criteria. You can
apply filters to your data by clicking the filter icon in the header row and
selecting specific criteria.
Line Chart: Shows trends over time (great for time series data).
Doughnut Chart: Similar to a pie chart but with a hole in the middle.
Flash Fill: Flash Fill automatically fills data when it detects a pattern. For
instance, if you start typing the first name from a full name, Flash Fill will
suggest the remaining names, and you can press Enter to accept the fill.
You can handle errors using the IFERROR or IFNA functions to display a
custom message or value when an error occurs in a formula. For example:
Choose the type of rule you want (e.g., Highlight Cells Rules, Data Bars,
Color Scales).
Set the conditions for the formatting (e.g., cells greater than a certain
value).
Data validation allows you to control what data can be entered into a cell.
To set it:
Set the validation criteria (e.g., allow only whole numbers, dates within a
range).
Optionally, set an input message and error alert to guide the user.
You can create drop-down lists to restrict data entry to a specific set of
options:
In the Validation Criteria, choose List and enter the options, either directly
or by selecting a range of cells.
To protect the workbook, go to File > Info > Protect Workbook > Encrypt
with Password.
To import data:
Choose the data source (e.g., From Text/CSV, From Web, From Access).
Select the file or source and follow the prompts to load the data into Excel.
Pivot Charts: These are charts that are linked to a pivot table. They allow
visual representation of the data summarized in the pivot table.
VLOOKUP: Used to search for a value in the first column of a range and
return a value in the same row from another column. Example:
=VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup]).
VBA
Sub ShowMessage()
End Sub
To create a macro, go to Developer > Visual Basic > Insert > Module, then
paste and run your code.