Hi @Anonymous ,
Could you please share a bit more about the issue within your app?
Do you mean that the myAliasVariable value could not be saved into your Excel table?
Firstly, please check if the myAliasVariable is populated with proper value within your app. In other words, please check if you have configured a value for the MailNickname property in your Office 365 profile.
In addition, please consider modify your formula as below:
Patch(
'YourExcelTable',
Defaults('YourExcelTable'),
{
UserName: Office365Users.MyProfile().MailNickname,
UserEmail: User().Email,
LoginDate: Today(),
LoginTime: Now()
}
)
Or
Patch(
'YourExcelTable',
Defaults('YourExcelTable'),
{
UserName: Office365Users.MyProfileV2().mailNickname,
UserEmail: User().Email,
LoginDate: Today(),
LoginTime: Now()
}
)
Please take a try with above formula, then check if the issue is solved.
Best regards,