@darrenfloyd666
Same concept here. Every datacard/control should have one of these in the Visible property
currentPage=1
currentPage=2
currentPage=3
currentPage=4
Your Next button should have this code in the OnSelect
If(currentPage<=3, Set(currentPage, currentPage+1))
And this code in the OnVisible
!(currentPage=4)
Your button to show previous should have this code in OnSelect
If(currentPage>=1, Set(currentPage, currentPage-1))
And this code in the OnVisible
!(currentPage=1)
If this code works well for you it might be a good idea to add it as a 2nd solution so everyone can benefit.
---
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."