-
Notifications
You must be signed in to change notification settings - Fork 1
/
brief.html
72 lines (51 loc) · 2.86 KB
/
brief.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/brief.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="assets/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="assets/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="assets/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="assets/favicon/site.webmanifest" />
<script src="js/index.js" defer></script>
<title>Excel Comp</title>
</head>
<body class="brief container">
<h1 class="brief-heading">Important notes</h1>
<ol class="brief-list">
Before proceeding any further to compare your excel files there are some important things you need to take note of.
<li>Due to it's limitations excel comp can only compare the first sheet of your excel file</li>
<li>Excel comp compares your two excel files and outputs the resuls row by row. i.e It prints the difference between a row first before moving on to a column.</li>
<li>Excel comp tries to compare the cells using the names of the cells. It gives each cell a name corresponding to "Cell (Row Number), (Column Number}" You are also able to name the cells yourself. The steps to give a cell a name are given below using the Name Manager tool in Excel. This tool allows you to create and manage named ranges in your Excel workbook.
<ol class="brief-nested-list">
<li>Open the Excel workbook that you want to work with.</li>
<li>Click the Formulas tab in the ribbon at the top of the window.</li>
<li>In the Defined Names section of the ribbon, click the Name Manager button.</li>
<li>In the Name Manager dialog box, click the New button.</li>
<li>In the New Name dialog box, enter a name for the cell in the Name field.</li>
<li>In the Refers to field, enter the cell reference of the cell you want to give a name to. For example, if you want to give a name to cell A1, you would enter A1 in the Refers to field.</li>
<li>Click the OK button to save the new name.</li>
<li>In the Name Manager dialog box, click the Close button to close the dialog box.</li>
Using the name manager tool allows the user to give the cells names that can be accessed by javascript. Note this is not compulsory and can be ignored if you feel you could understand the differences but for the best experience use the name manager. Thank you for your time.
</ol>
</li>
</ol>
<aside class="brief-bottom"> <a href="main-site.html" class="primary-button">Go Home</a></aside>
</body>
</html>