Hi,
Need help on Delegation problem!
I am able to pull 2000 rows into col1 by creating collections, from 2001 its not storing any rows in my 2 collection called col2. Please find the below formula:
Concurrent(
ClearCollect(
col1,
Filter(
Glossary,
ID >= 1 && ID <= 2000
)
),
ClearCollect(
col2,
Filter(
Glossary,
ID >= 2001 && ID <=3000
)
)
);
ClearCollect(
colCombined,
col1,
col2
);
in the above formula when I Give TermID instead of ID, then it's not even recognizing the Column name
(or)
I tried in another way as well:
ClearCollect(colCombined,Filter(Glossary, TermID <=2000),Filter(Glossary, TermID > 2000 && ID <=4000))
Both formulas not Working, i think its not recognizing TermID which i created at SharePoint by referring SharePoint ID Column(which is already build in)
Very much appreciated for the solution. Thanks!

Report
All responses (
Answers (