Hello PowerApps commmunity,
I am fairly new to PowerApps and am having difficulties understanding where I go wrong in my logic here.
Case:
I have a table of ~100 rows and I would like to collect some of these rows and place them in a collection OnStart.
In SQL terms what I am trying to achieve is as simple as:
SELECT *
FROM DB.Table
WHERE [ID] LIKE 'Default%'
But I am having an embarrassing amount of difficulties in achieving this.
I tried this simple code:
ClearCollect(col_DataDefaults,
Filter('DB.TableName', "Default" in ID)
);
This return only the rows I need - so far so good.
I also get all of the columns in the table - great.
BUT, all columns except for the ID columns that I am filtering on contains blank values.
From what I understand about delegation, using something like AddColumns() is not sustainable because of delegation, is this correct?
I need to pull these specific rows to use as default values in various locations in my app.
Thank you in advance for any help