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
Copy file name to clipboardExpand all lines: content/en/docs/refguide/modeling/integration/use-excel-documents/import-a-large-excel-file.md
+19-23Lines changed: 19 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,7 @@ Before starting this how-to, make sure you have completed the following prerequi
24
24
25
25
The Excel sheet you receive in this scenario contains almost every country in the world, as well as some supporting data. This data has to be imported into your application.
26
26
27
-
You can find the Excel sheet here: [Countries](/attachments/howto/integration/importing-excel-documents/import-a-large-excel-file/Countries.xlsx).
27
+
You can find the Excel sheet here: [Countries](/attachments/refguide/modeling/integration/import-a-large-excel-file/Countries.xlsx).
28
28
29
29
You are going to make an XSD schema from the headers in the Excel sheet so you can import the data into the model.
30
30
@@ -33,9 +33,9 @@ To modify your Excel sheet, follow these steps:
33
33
1. Select the header row with all the country names.
34
34
2. Copy and paste them in a new sheet using the transpose function:
Your headers should be listed vertically and your sheet should look like this: [Countries Transposed](/attachments/howto/integration/importing-excel-documents/import-a-large-excel-file/CountriesTransposed.xlsx).
38
+
Your headers should be listed vertically and your sheet should look like this: [Countries Transposed](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountriesTransposed.xlsx).
39
39
40
40
You are now ready to add some tags around the column.
41
41
@@ -48,17 +48,17 @@ To modify your Excel sheet, follow these steps:
48
48
49
49
5. Drag the string all the way down to the last country.
7. Like you did with the previous string, drag it down to the last country. The Excel sheet should now look like this: [Countries with Tags](/attachments/howto/integration/importing-excel-documents/import-a-large-excel-file/CountriesWithTags.xlsx).
59
+
7. Like you did with the previous string, drag it down to the last country. The Excel sheet should now look like this: [Countries with Tags](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountriesWithTags.xlsx).
Now, group the three different columns into one column. This is necessary to copy the whole column into an XSD file.
64
64
@@ -68,7 +68,7 @@ To modify your Excel sheet, follow these steps:
68
68
=(A1&B1&C1)
69
69
```
70
70
71
-
9. Drag the cells down like you’ve done with column **A1** and **C1**. Now, column **D** should have columns **A**, **B**, and **C** combined into one, and your sheet should look like this: [Countries with Tags and Column D](/attachments/howto/integration/importing-excel-documents/import-a-large-excel-file/CountriesWithTagsAndColumnD.xlsx).
71
+
9. Drag the cells down like you’ve done with column **A1** and **C1**. Now, column **D** should have columns **A**, **B**, and **C** combined into one, and your sheet should look like this: [Countries with Tags and Column D](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountriesWithTagsAndColumnD.xlsx).
72
72
73
73
## Preparing Your XSD File
74
74
@@ -98,43 +98,39 @@ You have used some of Excel's basic functionalities to create the first part of
98
98
</xs:schema>
99
99
```
100
100
101
-
Your file should look like this: [Country Import](/attachments/howto/integration/importing-excel-documents/import-a-large-excel-file/CountryImport.xsd).
101
+
Your file should look like this: [Country Import](/attachments/refguide/modeling/integration/import-a-large-excel-file/CountryImport.xsd).
102
102
103
103
5. Click **Save**.
104
104
105
105
## Importing into Your Application Project
106
106
107
107
The XSD file is ready to be imported into your app. To import it, follow these steps:
108
108
109
-
1. Open your app and create a new XSD schema:
109
+
1. Open your app and create a new XSD schema. Do this by right-clicking the module and selecting **Add other** > **XML schema**.
0 commit comments