Basic Arithmetic
Add
=A1+B1 Subtract
=A1-B1 Multiply
=A1*B1 Divide
=A1/B1 Power
=A1^2 (A1 to the power of 2) Pearson Edexcel International GCSE ICT 4IT1
Spreadsheet formulas, database operators, file size & networking calculations, the SDLC and theory keywords — your complete Pearson Edexcel IGCSE ICT 4IT1 reference for 2026.
Our formula sheets are free to download — save this one as PDF for offline revision.
Aligned with the latest 2026 syllabus and board specifications. This sheet is prepared to match your exam board’s official specifications for the 2026 exam series.
Pearson Edexcel International GCSE ICT (4IT1) is assessed across two components — Paper 1: Written Exam (theory) and Component 2: Practical Paper (hands-on tasks with spreadsheets, databases, presentations, web pages and digital graphics). This formula sheet brings every essential formula, function, calculation, theory keyword and SDLC concept together for fast revision.
Spreadsheet formulas: SUM, AVG, IF, VLOOKUP, COUNTIF, ROUND, INT
Database operators, query syntax and validation rules
File size, data transmission and bandwidth calculations
SDLC stages and Component 2 practical workflow
Always start spreadsheet formulas with =. Use absolute references ($) when copying formulas across cells.
Add
=A1+B1 Subtract
=A1-B1 Multiply
=A1*B1 Divide
=A1/B1 Power
=A1^2 (A1 to the power of 2) SUM
=SUM(A1:A10) — adds a range AVERAGE
=AVERAGE(A1:A10) — arithmetic mean MIN / MAX
=MIN(A1:A10) / =MAX(A1:A10) — smallest / largest value COUNT
=COUNT(A1:A10) — counts cells with NUMBERS only COUNTA
=COUNTA(A1:A10) — counts NON-EMPTY cells (text or number) MEDIAN / MODE
=MEDIAN(A1:A10) / =MODE(A1:A10) IF
=IF(condition, value_if_true, value_if_false) — e.g. =IF(A1>50,"Pass","Fail") Nested IF
=IF(A1>=70,"A",IF(A1>=50,"B","C")) AND / OR
=IF(AND(A1>50,B1>50),"Both pass","Fail") COUNTIF
=COUNTIF(A1:A10,">50") — counts cells meeting condition SUMIF
=SUMIF(A1:A10,">50") — sums cells meeting condition AVERAGEIF
=AVERAGEIF(A1:A10,">50") VLOOKUP
=VLOOKUP(value, table_range, col_number, FALSE) HLOOKUP
=HLOOKUP(value, table_range, row_number, FALSE) INDEX/MATCH
=INDEX(range, MATCH(value, lookup_range, 0)) Use FALSE (or 0) for exact match in VLOOKUP — TRUE only for sorted approximate match.
ROUND
=ROUND(A1, 2) — rounds to 2 decimal places ROUNDUP / ROUNDDOWN
=ROUNDUP(A1, 0) / =ROUNDDOWN(A1, 0) INT
=INT(A1) — drops the decimal (always rounds down) MOD
=MOD(A1, B1) — remainder after division Relative
A1 — changes when copied Absolute
$A$1 — never changes when copied Mixed
$A1 (column locked) or A$1 (row locked) Press F4 to toggle through reference types in most spreadsheet apps.
LEFT / RIGHT / MID
=LEFT(A1,3) / =RIGHT(A1,3) / =MID(A1,2,4) LEN / CONCATENATE
=LEN(A1) / =A1&" "&B1 Conditional formatting
Highlight cells based on >, <, between, equal to, top/bottom %, duplicates, formula result Edexcel practical databases use simple search criteria. Match the operator to the data type.
= (equal) · <> or != (not equal) · > (greater) · < (less) · >= (greater or equal) · <= (less or equal) AND
Both conditions must be TRUE — e.g. Age > 18 AND Country = "UK" OR
At least one condition TRUE — e.g. City = "London" OR City = "Paris" NOT
Reverses the condition — NOT (Status = "Active") *
Any number of characters — "Sm*" matches Smith, Smyth, Smithers ?
One character — "S?ith" matches Smith but not Smyth [ ]
Range — "[a-c]*" matches words starting with a, b, or c Range check
Field value within set min and max (e.g. Age between 0 and 120) Type check
Data is correct type (number, text, date) Length check
Number of characters within limits Format/picture check
Data follows pattern (e.g. postcode AA1 1AA) Presence check
Field cannot be empty (required) Lookup/list check
Value must be from a defined list Check digit
Final digit calculated from others (used in barcodes, ISBN) Verification = data entered correctly (different from validation, which checks data is sensible).
Double entry
Same data entered twice; computer compares Visual check
User reads back data on screen against source document Field types
Text · Number (integer/decimal) · Currency · Date/Time · Boolean (Yes/No) · Memo · AutoNumber · Picture/OLE Ascending / Descending
A→Z, 0→9, oldest→newest / Z→A, 9→0, newest→oldest Multi-level sort
Primary field first, then secondary (e.g. Country ASC, then Surname ASC) Always state units in your final answer (bits, bytes, seconds).
1 nibble = 4 bits 1 byte = 8 bits 1 KB = 1024 bytes (binary) or 1000 bytes (decimal — used by manufacturers) 1 MB = 1024 KB · 1 GB = 1024 MB · 1 TB = 1024 GB Bits
File size = Width (px) × Height (px) × Colour depth (bits per pixel) Bytes
File size (bytes) = (W × H × CD) / 8 Colour depth: 1-bit = 2 colours · 8-bit = 256 · 24-bit = 16.7 million.
Sound
File size (bits) = Sample rate (Hz) × Bit depth × Duration (s) × Channels Video
File size ≈ Frame size × Frame rate × Duration. Apply compression ratio if specified. ASCII = 7-8 bits, Unicode (UTF-16) = 16 bits.
File size (bits) = Number of characters × Bits per character Time (s)
Time = File size (bits) / Data transfer rate (bits per second) Convert bytes to bits (×8) before dividing by bps. State units in answer.
Bandwidth
Bandwidth (bps) = Data transferred / Time taken Compression ratio
Original size : Compressed size (e.g. 4:1) Lossy
Permanent quality loss — JPEG, MP3, MP4 Lossless
No quality loss — ZIP, PNG, FLAC LAN / WAN / WLAN / PAN
Local · Wide · Wireless · Personal Area Network Star
All devices connect to central switch/hub — most common Bus / Ring / Mesh
Single backbone · Closed loop · Every device connected to every other Router
Connects different networks (e.g. LAN to internet) Switch / Hub
Switch sends to destination only · Hub sends to ALL devices NIC / Modem / WAP
Network Interface Card · Modulator-demodulator · Wireless Access Point IP address
IPv4: 4 numbers 0-255 (e.g. 192.168.1.1) · IPv6: 128-bit hex MAC address
Unique hardware ID — 6 hex pairs (e.g. 00:1A:2B:3C:4D:5E) URL / HTTP / HTTPS
protocol://domain/path — HTTPS uses TLS/SSL encryption FTP / SMTP / POP3 / IMAP
File transfer / Email send / Email receive / Email sync SaaS
Software as a Service — e.g. Google Docs PaaS / IaaS
Platform / Infrastructure as a Service Threats: Hacking · Phishing · Pharming · Smishing · Vishing · Malware (virus, worm, trojan, spyware, ransomware) · DoS attack Protection: Firewall · Anti-malware · Encryption · Strong passwords · 2FA · HTTPS · Biometrics · Backups Input
Keyboard · Mouse · Touchpad · Touchscreen · Microphone · Camera · Scanner · Barcode/OMR/OCR/MICR · Sensors · Stylus · Graphics tablet Output
Monitor (LCD/LED/OLED) · Printer (inkjet, laser, dot-matrix, 3D) · Speakers · Headphones · Plotter · Projector · Actuator Magnetic
HDD, magnetic tape — cheap, large capacity, slower Optical
CD, DVD, Blu-ray — read by laser Solid-state
SSD, USB flash, SD card — fast, no moving parts RAM
Random Access Memory — volatile, holds running programs ROM
Read-Only Memory — non-volatile, holds boot instructions System software
Operating system, utilities (antivirus, file manager, disk defrag) Application software
User-facing — word processors, spreadsheets, browsers GUI / CLI
Graphical (WIMP) · Command Line (text) Menu-driven / Voice / Touch
Menu lists · Speech recognition · Smartphones, tablets, kiosks Image
JPEG (lossy) · PNG (lossless, transparency) · GIF (animation) · BMP (uncompressed) · SVG (vector) Audio / Video
MP3, WAV, FLAC · MP4, AVI, MOV Document
PDF · DOCX · TXT · CSV (data) · RTF Edexcel's practical paper expects you to follow the Systems Development Life Cycle on every multi-stage task.
Understand the problem and the user's requirements before building anything.
Read the brief carefully · Identify inputs, outputs and processes · List user requirements · Note constraints (time, software available, file formats) Plan the solution before opening the software.
Sketch layouts (spreadsheet, web page, presentation) · Plan database fields and data types · Plan formulas/queries · Identify house style (font, colour, logo) Build the solution using the chosen application.
Save regularly with sensible filenames · Use absolute references for copied formulas · Apply validation rules · Maintain a consistent house style Check the solution does what was required.
Test data types
Normal (typical) · Boundary (edge values) · Erroneous (invalid) Document expected vs actual outcome and screenshot evidence Reflect on whether the solution meets requirements.
Compare against original user requirements · Identify strengths and limitations · Suggest improvements (more validation, better layout, automation) Screenshot in formula view AND results view for every spreadsheet · Print/PDF database query design + results · Save web pages as both HTML and screenshot Use Show Formulas (Ctrl+`) before saving spreadsheet evidence — this is the most-missed mark on Component 2.
Theory questions reward both 'benefits' and 'drawbacks' — always present BOTH.
Created roles
Network engineer · Web designer · Data analyst · Cyber-security · Software developer · UX designer Lost roles
Manual factory work · Bank tellers · Travel agents · Retail (high-street) Teleworking · Remote / hybrid · Flexitime · Compressed hours · Job sharing · Part-time Pros: less commute, flexibility, cost savings · Cons: isolation, work-life blur, distractions Online banking · Online shopping · Online booking · E-government · E-learning · Streaming · Cloud storage · Social networking RSI / Eye strain
Repetitive Strain Injury — breaks, ergonomic kit · Glare, blue light — anti-glare screen, 20-20-20 rule Back/neck / Headaches
Adjustable chair, monitor at eye level · Lighting, regular breaks Electrical hazards
No trailing cables, PAT testing Personal data must be: collected lawfully · used only for stated purpose · accurate & up-to-date · kept securely · not kept longer than needed · accessible to data subject · not sent abroad without protection Boost your Cambridge exam confidence with these proven study strategies from our tutoring experts.
Build sample spreadsheets weekly: VLOOKUP, IF nesting, COUNTIF. Examiners reward correct argument order — practise without copying examples.
Edexcel Component 2 marks reflect process as well as result. Plan → build → test → evaluate, and screenshot evidence at every stage.
For file size and transmission questions, state bits, bytes, MB or seconds in your answer. Method marks are awarded even with arithmetic slips — but only if working is shown.
Theory questions on effects of ICT (employment, working patterns, health) usually want BOTH benefits and drawbacks. Plan a balanced response.
Quick answers about this free PDF and how to use it for exam revision and active recall.
Yes. This Tutopiya formula sheet is free to use and you can download it as a PDF from this page for offline revision. There is no payment or account required for the PDF download.
This page groups key Information & Communication Technology formulas in one place for revision. Comprehensive Pearson Edexcel International GCSE ICT (4IT1) formula sheet for 2026 exams. Covers spreadsheet formulas (SUM, IF, VLOOKUP, COUNTIF), database operators, file size & data transfer calculations, networking… Always cross-check with your official syllabus and past papers for your exam session.
No. In the exam you must follow only what your exam board allows in the hall—usually the official formula booklet or data sheet where provided. This page is a revision and teaching aid, not a replacement for board-issued materials.
It is written for students preparing for assessments at Secondary in Information & Communication Technology, including classroom revision, homework support, and independent study. Teachers and tutors can also share it as a quick reference.
Work through past paper questions, quote the correct formula before substituting values, and check units and notation every time. Pair this sheet with timed practice and mark schemes so you see how examiners expect working to be set out.
Explore Tutopiya’s study tools, past paper finder, and revision checklists linked from our tools hub, or book a trial lesson with a subject specialist for personalised support alongside this formula reference.
Practice Pearson Edexcel ICT Paper 1 theory and Component 2 practical with an experienced tutor — spreadsheets, databases, web authoring, presentations and SDLC documentation. We focus on accurate formulas, validation rules and theory keyword precision.
Pair this formula sheet with past papers, revision checklists, and planners — all free on our study tools hub.
This formula sheet aligns with Pearson Edexcel International GCSE Information & Communication Technology (4IT1) specification content for 2026 examinations.
For Component 2, always check spreadsheet formulas display correctly with Show Formulas before saving evidence — and use absolute references when copying.