Hello there!
I am getting an delegation error doing the following code. Is it possible to get this delegation error go away and still have the same result? Maybe using the GroupBy function?
Screenshot of the delegation; https://gyazo.com/2a88d2152a00270f41101409463bbe9b
Here is the code that is giving a delegation error;
Filter(
'Manco-Informatie',
If(
selectedStatus = "All",
Verzender = gblFullName,
Verzender = gblFullName && (IsBlank(selectedStatus) || Status = selectedStatus)
)
)
The full code;
Sort(
Search(
If(
gblIsAdmin,
If(
selectedStatus = "All",
'Manco-Informatie',
Filter(
'Manco-Informatie',
IsBlank(selectedStatus) || Status = selectedStatus
)
),
Filter(
'Manco-Informatie',
If(
selectedStatus = "All",
Verzender = gblFullName,
Verzender = gblFullName && (IsBlank(selectedStatus) || Status = selectedStatus)
)
)
),
TekstZoekVeld.Text,
"Verzender",
"Status",
"Deelorder",
"Extern",
"Product",
"Intern",
"Datum",
"Tekeningnummer",
"Omschrijving",
"VolledigTekeningNummer"
),
'Ticket ID',
If(
SortDescending1,
Ascending,
Descending
)
)
Solved! Go to Solution.
This code worked, thank you! @iAm_ManCat ;
Sort(
Search(
If(
gblIsAdmin,
If(
selectedStatus = "All",
'Manco-Informatie',
Filter(
'Manco-Informatie',
IsBlank(selectedStatus) || Status = selectedStatus
)
),
If(
selectedStatus = "All",
Filter(
'Manco-Informatie',
Verzender = gblFullName,
Verzender = gblFullName && (IsBlank(selectedStatus) || Status = selectedStatus)
)
)
),
TekstZoekVeld.Text,
"Verzender",
"Status",
"Deelorder",
"Extern",
"Product",
"Intern",
"Datum",
"Tekeningnummer",
"Omschrijving",
"VolledigTekeningNummer"
),
'Ticket ID',
If(
SortDescending1,
Ascending,
Descending
)
)
Hi @TimoMigchielsen ,
I think you need to wrap your If statement outside of the filter, just like you did for the data source above it:
Sort(
Search(
If(
gblIsAdmin,
If(
selectedStatus = "All",
'Manco-Informatie',
Filter(
'Manco-Informatie',
IsBlank(selectedStatus)
||
Status = selectedStatus
)
),
If(
selectedStatus = "All",
Filter(
'Manco-Informatie',
Verzender = gblFullName,
),
Filter(
'Manco-Informatie',
Verzender = gblFullName
&&
(
IsBlank(selectedStatus)
||
Status = selectedStatus
)
)
)
)
,
TekstZoekVeld.Text,
"Verzender",
"Status",
"Deelorder",
"Extern",
"Product",
"Intern",
"Datum",
"Tekeningnummer",
"Omschrijving",
"VolledigTekeningNummer"
),
'Ticket ID',
If(
SortDescending1,
Ascending,
Descending
)
)
Let me know if that works for you,
Cheers,
Sancho
@iAm_ManCat |
Please 'Mark as Solution' if someone's post answered your question and always 'Thumbs Up' the posts you like or that helped you! |
Thanks! |
Thank you for your answer @iAm_ManCat
I get a lot of errors trying your code. For the Search & If operator
This code worked, thank you! @iAm_ManCat ;
Sort(
Search(
If(
gblIsAdmin,
If(
selectedStatus = "All",
'Manco-Informatie',
Filter(
'Manco-Informatie',
IsBlank(selectedStatus) || Status = selectedStatus
)
),
If(
selectedStatus = "All",
Filter(
'Manco-Informatie',
Verzender = gblFullName,
Verzender = gblFullName && (IsBlank(selectedStatus) || Status = selectedStatus)
)
)
),
TekstZoekVeld.Text,
"Verzender",
"Status",
"Deelorder",
"Extern",
"Product",
"Intern",
"Datum",
"Tekeningnummer",
"Omschrijving",
"VolledigTekeningNummer"
),
'Ticket ID',
If(
SortDescending1,
Ascending,
Descending
)
)
User | Count |
---|---|
201 | |
101 | |
90 | |
45 | |
43 |
User | Count |
---|---|
247 | |
105 | |
103 | |
65 | |
57 |