You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Download the release or build the solution yourself (artifacts will be in `MaterializeExcel.AddIn\bin\Debug`).
18
+
19
+
Edit the `.config` file for your Materialize host.
20
+
```
21
+
<MaterializeExcel.AddIn.Properties.Settings>
22
+
<setting name="Host" serializeAs="String">
23
+
<value>localhost</value>
24
+
</setting>
25
+
<setting name="Port" serializeAs="String">
26
+
<value>6875</value>
27
+
</setting>
28
+
<setting name="Database" serializeAs="String">
29
+
<value>materialize</value>
30
+
</setting>
31
+
<setting name="User" serializeAs="String">
32
+
<value>materialize</value>
33
+
</setting>
34
+
</MaterializeExcel.AddIn.Properties.Settings>
35
+
```
36
+
37
+
Follow the [Add or remove an Excel add-in](https://support.microsoft.com/en-us/office/add-or-remove-add-ins-in-excel-0af570c4-5cf3-4fa9-9b88-403625a0b460) instructions from Microsoft. Make sure the `.xll` and `.config` files stay together.
38
+
39
+
Note - Excel will complain about this being an unsigned/untrusted add-in. Read and build the code yourself if you prefer.
3
40
4
41
## Materialize demo set up
5
42
@@ -13,4 +50,6 @@ Only works with native Excel 365 on Windows.
13
50
14
51
Order by clauses are not implemented.
15
52
16
-
Large grids are currently inefficient due to copy from multiset to 2d array.
53
+
Large grids are currently inefficient due to copy from multiset to 2d array.
0 commit comments