Hi @Belasor
Yes it is posible, you can use Patch() function for this.
To update your record you will need to put forumla similar to this in your Button.OnSelect property:
Patch(
YourSharePointList,
Gallery1.Selected,
{
Column1:false,
ColumnUser:User().FullName
}
)In Patch() function first you say which list to patch (YourSharePointList).
Then you specify which record in that list to patch (Gallery1.Selected), if your items are not from gallery. You can do a lookup to find the record to patch:
Patch(
YourSharePointList,
LookUp(YourSharePointList,IDColumn = IdentificationVariable),
{
Column1:false,
ColumnUser:User().FullName
}
)Where IDColumn is a column in SharePoint List with which you can identify records and IdentificationVariable is a variable assigned in PowerApps to match records.
And then you specify which columns to change.
Some notes:
User() function can sometimes slow down your app and it is suggested to save your current user into a global variable and use through the app.
To do this you would put something like this in the Screen.OnStart or OnVisible property:
Set(
_UserProfile,
User()
)
Then you can just use _UserProfile.DisplayName to get the name or _UserProfile.Email to get email.