Hi @LxNeomi ,
You have caused yourself a lot of unwanted work by using Choice columns, but then not using the choices from them - these would be far better served as text columns. However, the below should work
First one - OK
Sort(
Distinct(
CascadeDropIssue,
Title
),
Result
)
Second item
Filter(
AddColumns(
CascadeDropIssue,
"Category",
IssueCategory.Value
),
Title = DDDept.Selected.Result
).Category
Third item
Sort(
Distinct(
Filter(
AddColumns(
CascadeDropIssue,
"Issues",
Issue.Value
),
IssueCategory.Value = DDIssueCategory.Selected.Category
),
Issues
),
Result
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Visit my blog Practical Power Apps