
default of textinput
If(
DataCardValue54_5.Selected.Value = newStaff,
("name: " & DataCardValue41_5.Selected.'name' & " " & Office365사용자.UserProfile(DataCardValue41_5.Selected.'mail').JobTitle
, ""
)
<office365User.UserProfile failed at powerapps: function 'UserProfile' has invalid value for userid parameter (empty value delivered where unexpected). You receive an error message that says make sure a valid argument has been passed to the function.>
I have to deliver the empty value as default
I only want to deliver data when I have a value.
How should I solve this?
this code also not work..
If(
IsBlank(DataCardValue41_5.Selected.'mail'),
Office365Users.UserProfile(),
Office365Users.UserProfile(DataCardValue41_5.Selected.'mail')
)