Hi,
There is a workflow where there are 3 game types (Game Type 1, Game Type 2, Game Type 3) and 3 ranges of frequency (0-5, 6-10, 11-15)
When I input the data, do data processing and the final result is something like below:
| Frequency | Game Type 1 | Game Type 3 |
| 0-5 | 3 | [NULL] |
| 6-10 | [NULL] | 9 |
Now, I want above output to look as:
| Frequency | Game Type 1 | Game Type 2 | Game Type 3 |
| 0-5 | 3 | [NULL] | [NULL] |
| 6-10 | [NULL] | [NULL] | 9 |
| 11-15 | [NULL] | [NULL] | [NULL] |
Basically, no matter what output I get, I want to fill that in a base template:
| Frequency | Game Type 1 | Game Type 2 | Game Type 3 |
| 0-5 | | | |
| 6-10 | | | |
| 11-15 | | | |
How can I do this? May be I can put the template as a Text Input and then do matching in some way?
Thanks in advance.
Deevi