Hi @omi18 ,
Your latest formula still has some problems.
Could you tell me:
1)what is SemesterBox_1 used for
2)what is your filter rule? "SemesterBox_1.Selected.Result" could not represent the filter rule? filter based on which column?
Right syntax should look like this:
Filter(table,SemesterBox_1.Selected.Result in fieldname)
3)which column do you want to sort based on? "SortByColumns(.........Result,Ascending)" could not represent filter based on Result column.What's more, do you have column named Result in your '[travel].[CourseDesc]' table?
Right syntax should look like this:
SortByColumns(table,"fieldname",Ascending)
4)which column do you want to get no-repeated value? "Distinct(...,"Result")" could not represent distinct by the Result column.
Right syntax should look like this:
Distinct(table,fieldname)
5)'[travel].[CourseDesc]' represent what? a table? or a field? Whether does your table name '[travel]' or '[travel].[CourseDesc]'?
I assume that you have column named Result in table '[travel]',filter based on Result column , sort based on this column, distinct based on this column.
If so, try this formula:
Distinct(
SortByColumns(
Filter(
AddColumns(
'[travel]',"Full Name",FirstName & " " & LastName
),
SemesterBox_1.Selected.Result in Result
),"Result",Ascending
),Result
)
If my assumption is incorrect, please describe your feather more clearly.
Best regards,