Hi All,
I have an app that displays items from PowerBI in my gallery with a filter for just the selected quarter. Users can then go in and write a comment for each item in the gallery which then gets saved to SharePoint in a column called "Comment".
What I am trying to do is filter my gallery which currently displays the code below to only show items where Comment is not blank.
Filter(
PowerBIIntegration.Data,
'Quarter Year' = 'Selected Quarter'
)
When users submit a comment, I create a unique ID for each submitted comment that concatenates all the columns that make that row unique. Do I have to also create an ID for the Power BI columns I am pulling in? I am struggling to find a way to filter my gallery which is connected to Data source 1 based on a condition in Data source 2.
Any help would be greatly appreciated!