ICT 0417 Practical Notes
ICT 0417 Practical Notes
House Styles
House Styles
Remember to follow all the instructions given to avoid losing easy marks
Type in the name of the style exactly as it is in the paper
Click on the drop-down arrow in the Styles section → select Create a new style
Always base your styles on the Normal font
Setting the line spacing → click on format → then paragraph → select required options
From the same tab, you can change the spacing before and after the paragraph
Setting all capital letters → click on format → font → tick the option All Caps
To set certain bullets to a list style → click on format → click on Numbering → Bullets tab → choose the required option
To indent text for a style → click on format → Paragraph and input required indents under the Indentation section. Choose hanging
indents to indent the whole paragraph and the first line indents to indent only the first line of a paragraph.
Mail Merge
Mail Merge
Create a master document, which is mainly given as a source file
In the master document, click on the Mailings tab
In the start mail merge section, click on select recipients → select use an existing list → choose the source file
Select records to be used, filter if necessary
Data Manipulation
Data Manipulation (MS Access)
While importing files, make sure you select text file and not excel file, as .csv files are plain text.
When they ask for a set number of decimal places in a field, choose Fixed in Format.
Ensure that the dates displayed in the table are in the correct format under Table Design view.
To form a relationship between two tables, go to the Relationships section of the Database Tools tab and choose the required
tables.
The calculations will ONLY work if placed in the report footer. If Σ Total is used, then it appears automatically in the report footer.
=COUNT(\[Primary_field\])
Count the number of fields in a report
Always use the primary field as it is the unique field
Presentations
Presentation Authoring (MS PowerPoint)
To open a given outline, click the “New slide” arrow and click “slide from outline...”
When printing evidence of slide transitions, go to slide sorter and then PrntScr
For all bullets to enter the screen at once →, click on the Custom Animation under the Animations tab → Then select all the bullet
points and Add Effect in the side pane and choose the required style.
For the bullets to enter the screen one by one, → Select the first bullet point and animate as required from Add Effects. Repeat for
When printing evidence of animations, open the Custom animations pane and then PrntScr
To show evidence of transitions, take a screenshot of the slides pane, having a star beside the slides that have transitions.
It plays continuously to loop a slide show until the Esc key is pressed. Under the Slide Show tab, click on Set Up Slide Show under
Set Up. It appears in the Show options section of the option box.
Data Analysis
Data Analysis (MS Excel)
Naming a range of cells → select the cells → right click and select ‘Name a Range’. → type the name in the option box. Ensure the
o if they want it to show formulae. (To show formulas instead of values, select Show Formulas under the Formula Auditing section of
To colour a range of cells that contain specific values →, under the Styles section in the Home tab →, click on the drop-down menu
under Conditional Formatting. Choose New Rule → Format only cells that contain. → add the rule according to the instructions
on the paper from the Format tab (ego: less than 100, format: green). You can add more than one rule to a range of cells by
When you are using another file as a source file (ego for a LOOKUP function), make sure it is open until the end, or else the
DESCRIPTION FORMULA
Add, Subtract, Multiply, Divide =A1+B1
DESCRIPTION FORMULA
SUM = Adding a range of numbers =SUM(A1:A4)
AVERAGE - Find the average =AVERAGE(A1:A4)
MIN - Find the low value =MIN(A1:A4)
MAX - Find the highest value =MAX(A1:A4)
COUNT - Finding how many numbers
=COUNT(A1:A4)
are in a range
COUNTA - Counting the number of
=COUNTA(A1:A4)
items in a range
INT - Converts to the lowest whole
=INT(A1)
number
ROUND - Rounding numbers =ROUND(A1,2) The 2 is the number of decimal places
ROUNDUP - Rounding numbers up =ROUNDUP(A1,2) The 2 is the number of decimal places
ROUNDDOWN - Rounding numbers
=ROUNDDOWN(A1,2) The 2 is the number of decimal places
down
VLOOKUP - Looking up what
=VLOOKUP(A1,$B$1:$C$8,2)A1 is the cell to check$B$1:$C$8 is the array to look in2 is
particular values mean from a table
column 2 from $B$1:$C$8 meaning return the value in column 2 in that section.
arranged vertically
HLOOKUP - Looking up what
=HLOOKUP(A1,$B$1:$G$2,2)A1 is the cell to check$B$1:$G$2 is the array to look in2 is
particular values mean from a table
row 2 from $B$1:$G$2 meaning return the value in row 2 in that section.
arranged horizontally
SUMIF – adding up specific values in =SUMIF($B$1:$C$8,A1, $D$1:$D$8)Checks if any cells in $B$1:$C$8 = A1 and if they do
DESCRIPTION FORMULA
a range then it adds them together
COUNTIF - Counts the number of
=COUNTIF(A2:A4,">4") Checks that cells have a value greater than 4=COUNTIF(A2:A4,
cells in a range that satisfy the given
A1) Checks that the cells are equal to the value in cell A1
criteria
IF – Deciding what will go into a cell =IF($B$1:$B$8=A1,”A”)IF the value in A1 appears in the range of cells then write A
=IF($B$1:$B$8=A1,”A”, IF($B$1:$B$8=A2,”B”, IF($B$1:$B$8=A3,”C”,D)))IF the value in the
Nested IF
range equals A1 then write A, if it equals A2 write B, A3 write C and none of them D
Average IF – it searches for criteria
=AVERAGEIF($D$4:$D$64,G3,$E$4:$E$64)$D$4:$D$64 is the range, G3 is the
and makes an average of the range
criteria, $E$4:$E$64 is the average range
according to the criteria
SQRT – Square root of a number =SQRT(B3)B3 is the number
Website Authoring
HTML
Anchors: help navigate throughout a webpage
o Highlight the word or image that will be the hyperlink, click insert a hyperlink, and type the address of the website, the bookmark, or
o If the link needs to open in a new window, select New Window from the target frame. This will give you a target setting of "_blank."
If there are specified dimensions for a table, use the table properties to set these values.
Check the code to ensure that the table is not set to 100% width, if there are other values given.
To hide bullets from your webpage, add hidden after your tag selector.
Font type h2 {font-family: “Times New Roman”}
Text size h2 {font-size: 16pt}
Aligning text h2 {text-align: center}
‘Bold’ text h2 {text-weight: bold}
‘Underline’ text h2 {text-decoration: underline}
Second choice of font h2 {font-family: “Times New Roman, Verdana”}
h2 {font-family: “Times New Roman, serif”}h2 {font-family: “Calibri,
Adding generic fonts (either serif or sans-serif)
sans-serif”}
Changing colour h2 {color: #000000}
Using classes to set styles. It can be used by many selectors right {text-align: right}
Comment in HTML - text that is not read by the
computer, only for users
Comment in CSS - text that is not read by the computer, only
/* Enter comment here */
for users
Colour codes have three parts:
Amount of Light
Hex code
(colour)
Fully on FF
¾ on C0
Amount of Light
Hex code
(colour)
½ on 80
¼ on 40
Off 00
Examples:
HTML tag
Opening/closing head tag
Page title
<link rel=“stylesheet”
Attaching a CSS file
type=“text/css”href=“mystyle.css”>
Defining anchor tag
HTML tag
Setting default target window
Opening of the body/content
Table tag | border width as 1 | alignment
centre
CSS
What is CSS?
Two types
o Embedded/inline
o External
Embedded
Format:
External
External CSS sheets are separate sheets that style the webpage.
To use, they are required to be attached to the main HTML file using the tag:
o The tag is placed in the head tag of the html file. Several html sheets can be attached.
o h1 { property: value ;}
CSS Tags
Colours
o e.g. #000000
o F full capacity
Fonts
Tables
o Borders
o Background colour: background tags in the tables only apply to the tables.
Table { border-width:3px;}
Table { border-color: #000098;}
borders
Table { border-style: solid;}
Table { background-color: #009499;}
td { font-size: 3;}
Td/th tags td { font-family: Calibri;}
td { color: #000000;}
table { width:50px;}
Dimensions
table { height:60px;}
body { background-repeat: no-repeat;}
h1 {text-align: left/right/top/bottom;}
Editing Images
Editing Images
To save a picture with 8 bits - of colour depth, save it as a gif
o Open it in Paint and save it as
To compress the size of a picture, open it in the picture manager
o Edit picture
o Compress pictures
o Choose the most suitable option
To change the colour options of a picture, use picture manager
o Edit picture
o Colour