-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (49 loc) · 1.78 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/index.css"/>
<script src="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js"></script>
</head>
<body>
<p>
<h2>The table used for the examples is the following (feel free to edit it):</h2>
<table>
<thead>
<tr>
<th>Codename</th>
<th>Chinese</th>
<th>ID</th>
<th>Date of Birth</th>
<th>Height</th>
</tr>
</thead>
<tbody id="mainTable"></tbody>
</table>
</p>
<p>
<h2>Open Power Query Editor from an Excel table:</h2>
<img src="img/FromTable.png">
</p>
<p>
<h2 id="SelectRows">Get a column</h2>
<pre class="prettyprint">= Table.SelectRows(Source, each [Codename] = "Silence" or [Codename] = "Saria")</pre>
<p class="help">
Take all rows where "Codename" is either "Silence" or "Saria"
</p>
<a class="doc" href="https://docs.microsoft.com/fr-fr/powerquery-m/table-selectrows">Microsoft Documentation</a><br/><br/>
<table>
<thead>
<tr>
<th>Codename</th>
<th>Chinese</th>
<th>ID</th>
<th>Date of Birth</th>
<th>Height</th>
</tr>
</thead>
<tbody id="getColumnTable"></tbody>
</table>
</p>
</body>
<script type="text/javascript" src="js/index.js"></script>
</html>