Hi,
I have built a function to do a lookup on a SP list (no delegation warnings present).
The list has 7 columns and about 2800 rows.
The function is,
LookUp(Barcodes, BC = Value(TextInput1.Text),Product)
If I try to lookup, the first 50 or so barcodes, the lookup works perfectly with the following,
{
"status": null,
"duration": null,
"dataSource": "Barcodes",
"responseSize": null,
"controlName": "Label1",
"propertyName": "Text",
"nodeId": 9,
"formulaData": {
"script": "LookUp(Barcodes, BC = Value(TextInput1.Text),Product)\r\n",
"spanStart": 0,
"spanEnd": 53
},
"data": {
"context": {
"entityName": "Label1",
"propertyName": "Text",
"id": 53,
"nodeId": 9,
"diagnosticContext": {
"dataOperation": {
"protocol": "cdp",
"operation": "showGetRowsCount",
"apiId": "/providers/microsoft.powerapps/apis/shared_sharepointonline",
"dataSource": "Barcodes",
"table": "da3e3d08-545e-4ab3-86ef-b71ca306d9ab",
"operationName": "getRowsCount"
},
"formula": "LookUp(Barcodes, BC = Value(TextInput1.Text),Product)\r\n",
"span": {
"start": 0,
"end": 53
}
}
},
"info": "Requested 1 rows. Received 1 rows."
}
}
However, if I try anywhere past the first 50, it doesn't work and I get the following,
{
"status": null,
"duration": null,
"dataSource": "Barcodes",
"responseSize": null,
"controlName": "Label1",
"propertyName": "Text",
"nodeId": 9,
"formulaData": {
"script": "LookUp(Barcodes, BC = Value(TextInput1.Text),Product)\r\n",
"spanStart": 0,
"spanEnd": 53
},
"data": {
"context": {
"entityName": "Label1",
"propertyName": "Text",
"id": 61,
"nodeId": 9,
"diagnosticContext": {
"dataOperation": {
"protocol": "cdp",
"operation": "showGetRowsCount",
"apiId": "/providers/microsoft.powerapps/apis/shared_sharepointonline",
"dataSource": "Barcodes",
"table": "da3e3d08-545e-4ab3-86ef-b71ca306d9ab",
"operationName": "getRowsCount"
},
"formula": "LookUp(Barcodes, BC = Value(TextInput1.Text),Product)\r\n",
"span": {
"start": 0,
"end": 53
}
}
},
"info": "Requested 1 rows. Received 0 rows."
}
}
Has anyone any idea what is happening here please?
Thanks,