Hi Folks,
I want to know, what is the maximum number of conditions that the LookUp function can handle?
Solved! Go to Solution.
There aren’t any limits to the number of conditions LOOKUP can take.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
HI @IMathur ,
Do you want to know how many conditions could be added inside the LookUp function?
Currently, within Power Apps, there is no hard limits with the amount of conditions could be added inside the LookUp function. You could use the '&&' operator to concatenate multiple conditions inside the LookUp function.
But the more conditions added in your LookUp function, the lower performance your LookUp function would get. If you want to filter your data source records based on multiple condition, you could consider use Filter function to achieve your needs, instead of LookUp function:
Filter(
'Your Data Source',
Condition1,
Condition2,
...
)
Regards,
There aren’t any limits to the number of conditions LOOKUP can take.
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
HI @IMathur ,
Do you want to know how many conditions could be added inside the LookUp function?
Currently, within Power Apps, there is no hard limits with the amount of conditions could be added inside the LookUp function. You could use the '&&' operator to concatenate multiple conditions inside the LookUp function.
But the more conditions added in your LookUp function, the lower performance your LookUp function would get. If you want to filter your data source records based on multiple condition, you could consider use Filter function to achieve your needs, instead of LookUp function:
Filter(
'Your Data Source',
Condition1,
Condition2,
...
)
Regards,
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
Come together to explore latest innovations in code and application development—and gain insights from experts from around the world.
User | Count |
---|---|
201 | |
71 | |
49 | |
43 | |
30 |
User | Count |
---|---|
252 | |
120 | |
86 | |
84 | |
84 |