Hi all,
I need to produce an output similar to this;
CNumber CTitle CAP
C123 Test AB
If by iterating through the result list of a list rows-action an additional record should be added to the array and then displayed as described below.
CNumber CTitle CAP
C123 Test AB
C456 Test1 CD
If I intialize an array like this

The HTML table 2 returns an output as follows:
CNumber CTitle CAP
C123 Test AB
If a now try to add the line C456 Test2 CD to the array by using append to array using the same structure as in Initialize I get an error that only float, string and so on types can be appended.
If I compose two identically initalized arrays the create html doesn't work with the automatic setting. That is, I have to name the columns and assign values.
If I try to solve the problem by initializing two arrays and compose them

the result is an array of two arrays [["C456","Test2","XY"],["C789","Test3","CD"]].

Create HTML table doesn't work with automatic but needs values assigned. As the number of rows returned by the list rows - actions varies I can't use indexes. (can't use row count of list rows action as not all results are to be displayed)
Is there a way to solve this problem just using powerapps?
Thanks for any advice!