I am currently in the middle of creating a powerapp where users go in and choose options from a drop down, based on these options a gallery will bring back specific items from a sharepoint list.
I have done something like this before however it was using items from a collection so it was bringing back info based on what was saved in the collection. I've also done something similar with when a user enters their email then all the items they have submitted to sharepoint will appear in the gallery, however i can't seem to replicate this using drop downs.
Below is the code I am attempting to use on the gallery, for now it should basically be, whatever the user selects in "FatalRisks1 dropdown" if it is equal to the "FatalRisks" column in sharepoint, display this item in the gallery. I should also mention that the Fatal Risks drop down is also being populated by the same column, the sharepoint list is being populated by a microsoft Form.
Any help would be appreciated, here is the code i have been trying:
Sort(Filter(TheBigConversation, FatalRisk1 = FatalRisks && FatalRisk2 = FatalRisks2,Created,Descending))
Sort(Filter(TheBigConversation, FatalRisk1 = FatalRisks.Value,Created,Descending))
