
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Reverse Generic Load?
Greetings,
I would like to set up my data that is like the Input to be in the format of the Output. How can this be achieved?
Accepted Solutions


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If they are just additional data, then use a LOAD* to collect all fields:
CrosssTable(label, value, 1)
Load *
From ...
If they are new attributes, then adjust the load so they are listed first and amend the crosstable attribute count:
CrosssTable(label, value, 2)
Load Key, newAttribute, Color, ....
From ...

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I think you are looking for the crosstable function.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Yes that should work. I forgot to mention that it should account for additional columns added to the right. Is there a way for additional columns added to the right in the future to be loaded automatically?


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
If they are just additional data, then use a LOAD* to collect all fields:
CrosssTable(label, value, 1)
Load *
From ...
If they are new attributes, then adjust the load so they are listed first and amend the crosstable attribute count:
CrosssTable(label, value, 2)
Load Key, newAttribute, Color, ....
From ...
