Hi @maruthi216 ,
Could you please share a bit more about the Location column, Work Type column in your SP List? Are they choice type column or Single text type column?
How do you want to display your action values in your app? Using Gallery control or Text Input box (Multiple line mode) or Label?
Please take a try with the following workaround:
1. If the Location column, Work Type column are both choice type column:
Set the Items property of the Location Dropdown box to following:
Choices('YourSPList'.Location)
Set the Items property of the Work Type Dropdown box to following:
Choices('YourSPList'.'Work Type')
Add a Text Input box in your app, set the Mode property to TextMode.MultiLine. Set the Default property to following:
Concat(
Filter('YourSPList', Location.Value = LocationDropbox.Selected.Value, 'Work Type'.Value = WorkTypeDropbox.Selected.Value),
actions & Char(10)
)
2. If the Location column, Work Type column are both Text type column:
Set the Items property of the Location Dropdown box to following:
Distinct('YourSPList', Location)
Set the Items property of the Work Type Dropdown box to following:
Distinct('YourSPList', 'Work Type')
Add a Text Input box in your app, set the Mode property to TextMode.MultiLine. Set the Default property to following:
Concat(
Filter('YourSPList', Location = LocationDropbox.Selected.Value, 'Work Type' = WorkTypeDropbox.Selected.Value),
actions & Char(10)
)
In addition, if you want to display the actions value within a Gallery, please consider add a Gallery in your app, set the Items property to following:
Filter('YourSPList', Location.Value = LocationDropbox.Selected.Value, 'Work Type'.Value = WorkTypeDropbox.Selected.Value)
Add a Label within this Gallery, set the Text property to following:
ThisItem.actions
Best regards,