DB is SHAREEPOINT. There is a column in which the data type IT_MANAGER is a user or group.
And in FormMode.New's FORM, I want to put the word "IT" in the name of the department in the organization's OFFICE365USER as DEFAULT.
How should I do it?

If(
Form1_2.Mode = FormMode.New,
{
Claims: "i:0#.f|membership|" & Office365사용자.UserProfileV2(Filter( Office365사용자.SearchUserV2({isSearchTermRequired: false}).value, "IT" in Office365사용자.UserProfileV2().department)).Mail ,
Department: "IT운영",
DisplayName: "",
Email: "",
JobTitle: "",
Picture: ""
}
)