Based on your post, I understand that the auto fills in the column value with current view name.
Per my test, currently there is no method to achieve this.
Until now, you could only auto fill in the people or group column value with current user through PowerApps. Here are steps:
1.Go to the list -> Integrate -> Power Apps -> Customize forms.
2.Click FormScreen1 on the left Tree view -> Advanced on the right -> OnVisible -> Fill the text box with following code.
UpdateContext({
CurrentUser: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims: "i:0#.f|membership|" & Lower(User().Email),
Department: "",
DisplayName: User().FullName,
Email: User().Email,
JobTitle: ".",
Picture: "."
}
})
3.Click the people or group column DataCard on the left Tree view -> Advanced on the right -> Unlock to change properties -> Fill the variable with “CurrentUser” in the Default column.
4.Save and publish the form to SharePoint. Then you can see the people or group field has been filled in with the current user when you click "New item" in your list.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.