Hey all,
I have a Next button and I am looking to hide it after it has got to the end of my pagination results, but cannot get the right formula.
I have a dropdown with the user having the ability to increase the pagination to 30 called: DdResultsPP
I have a textbox, with its value set to:
"Total Results: " & vSearchResults.totalrows
My results are coming from a PowerAutomate flow
I have set my previous buttons visible property:
If(vFrom=0, false, true)
This was working, but while writing this, has stopped working!
My OnSelect on my next button is:
Set(vFrom,vFrom+DdResultsPP.Selected.Value);Select(BtnSearch)
I have a label displaying the total results from the flow:
"Total Results: " & vSearchResults.totalrows
How do I hide my Next button when there are no more results to display as the flow has searched all the results it can display?
My results are being displayed in a gallery, but I don't think the formula for the next buttons visible property makes any difference?
Thank You