Hi,
Both codes are working properly separately. I just don't know how I combine the two.
I have filter function by Department
SortByColumns(
Filter(
QAOversightApp,
Department = DeptDropdown.SelectedText.Result
),
"Modified",
Descending
)
After filtering the department, I have to show the list with Follow-up only. The column type of Follow-up in Sharepoint list is Boolean
If(Checkbox1.Value=true, Filter(QAOversightApp, 'Follow-up' <> false), QAOversightApp)
Any help is appreciated! 🙂
Regards,
May
Solved! Go to Solution.
Hi @mayarnaldo15 ,
Something like below code will work in your case ?
If(Checkbox1.Value=true, SortByColumns(Filter(QAOversightApp, Department = DeptDropdown.SelectedText.Result && 'Follow-up' <> false),
"Modified",
Descending
), SortByColumns(
Filter(
QAOversightApp,
Department = DeptDropdown.SelectedText.Result
),
"Modified",
Descending
))
If this post was helpful or you need more help please consider giving Thumbs Up and Tag me in your reply I'll be happy to help. If this post helped you solve your issue please click Accept as solution and provide Thumbs Up. This will help others find it more readily.
Hi @mayarnaldo15 ,
Something like below code will work in your case ?
If(Checkbox1.Value=true, SortByColumns(Filter(QAOversightApp, Department = DeptDropdown.SelectedText.Result && 'Follow-up' <> false),
"Modified",
Descending
), SortByColumns(
Filter(
QAOversightApp,
Department = DeptDropdown.SelectedText.Result
),
"Modified",
Descending
))
If this post was helpful or you need more help please consider giving Thumbs Up and Tag me in your reply I'll be happy to help. If this post helped you solve your issue please click Accept as solution and provide Thumbs Up. This will help others find it more readily.
User | Count |
---|---|
119 | |
87 | |
86 | |
75 | |
66 |
User | Count |
---|---|
214 | |
181 | |
139 | |
96 | |
83 |