Access Format Cheat Sheet
Access Format Cheat Sheet
Conditional Functions
IF: Tests a condition and returns one value if true, another if false.
=IF(A1>10, “High”, “Low”)
SUMIF: Adds cells that meet a condition.
=SUMIF(A1:A10, “>5”)
COUNTIF: Counts cells meeting a condition.
=COUNTIF(B1:B10, “Yes”)
Text Functions
CONCATENATE: Combines text from multiple cells.
=CONCATENATE(A1, “ “, B1)
LEFT: Extracts a specified number of characters from the left.
=LEFT(A1, 3)
RIGHT: Extracts characters from the right.
=RIGHT(B1, 2)
Lookup Functions
VLOOKUP: Searches for a value in the first column and returns a value in
the same row from a specified column.
=VLOOKUP(D1, A1:B10, 2, FALSE)
HLOOKUP: Horizontal lookup in a row.
=HLOOKUP(D1, A1:D10, 2, FALSE)
Common Tags
Headings: For section headings.
<h1>Main Title</h1>
<h2>Subheading</h2>
Paragraphs: For text blocks.
<p>This is a paragraph.</p>
Links: For hyperlinks.
<a href=https://example.com>Visit Example</a>
Images: For embedding images.
<img src=”image.jpg” alt=”Description”>
Lists
Unordered List: Bulleted list.
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
Ordered List: Numbered list.
<ol>
<li>First Item</li>
<li>Second Item</li>
</ol>
Tables
<table>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
</table>
Forms
Form with Input Fields
<form action=”/submit” method=”post”>
<label for=”name”>Name:</label>
<input type=”text” id=”name” name=”name”>
<input type=”submit” value=”Submit”>
</form>
Mail merge
Additional Tips
Save the Word document with the merge fields to reuse later.
Double-check for formatting issues, especially with date and number fields,
as they may require specific formats in Excel to display correctly in Word.