Hi @Anonymous,
It is recommended to take a look at the following article first:
Understand data forms in Microsoft PowerApps
To have the Form control work property, we need to configure the DataSource property and the item property.
Item property is one single record from the table configured under DataSource property.
By default, the DataSource is not allowed to change once configured, but for the item property, we could take use of filter functions to find the proper record,
For example (using Display form as an example):
We have the following table as data source:

1. Data Source configured to
'[dbo].[Product]'
2. Add a button, OnSelect property configured to:
UpdateContext({ProductID1:If(ProductID1>5,ProductID1-4,ProductID1+1)})
3. Item property configured to :
LookUp('[dbo].[Product]',ProductID=ProductID1)
When click the button, the item would change to the corresponding record:

EditForm is only available to configure the item property with Edit Mode, for more details, please check:
Edit form and Display form controls in PowerApps
Regards,
Michael