I would like to add a couple sort by columns for a name column and a date column but am struggling with where to insert it. This is the items property of my gallery and is working at the moment. Before or after filter then where to add my fields in this. Any help is appreciated!
Filter(
Search(
Search(
Search(
AddColumns(
'NDT Cert Tracker',
DisplayName,
Name.DisplayName,
ExaminerDisplayName,
Examiner.DisplayName,
SupervisorDisplayName,
Supervisor.DisplayName
),
txtName.Text,
DisplayName
),
txtExaminer.Text,
ExaminerDisplayName
),
txtSupervisor.Text,
SupervisorDisplayName
),
(cbxMethod.Selected.Value = Method.Value || IsBlank(cbxMethod.Selected.Value)),
(cbxLevel.Selected.Value = Level.Value || IsBlank(cbxLevel.Selected.Value)),
(cbxLocation.Selected.Value = Location.Value || IsBlank(cbxLocation.Selected.Value))
)