Concat(
ThisItem.CollaborationTools, // Your collection
Value,
";"
)
Concat(
ThisItem.CollaborationTools, // Your collection
Value,
";"
)
SortByColumns(Filter(coll_Area, Result in Filter(AddColumns('Maintenance Notification',"AreaName",Trim(
Last(FirstN(Split('Functional Location', "-"),4)).Value))
,("LUX-"&cmb_filerFuncLocation.Selected.Value) in 'Functional Location' ).AreaName || Result in Filter('Maintenance Notification',("LUX-"&cmb_filerFuncLocation.Selected.Value) in 'Functional Location' ).Area),"Result",SortOrder.Ascending)
In the gallery image control set below:
If(
Last(Split(ThisItem.Name, ".")).Value = "jpg" || Last(Split(ThisItem.Name, ".")).Value = "png" || Last(Split(ThisItem.Name, ".")).Value = "jpeg",
ThisItem.Value,
'google-docs'
)
Suppose we have a combobox having items property set to some complex calculation, we can set the display fields using Advanced properties of the combobox as below:
In my case "Result" column I want to display in my combobox
Coalesce(ThisItem.ProfilePicture, If(
Office365Users.UserPhotoMetadata(ThisItem.Email).HasPhoto = true,
Office365Users.UserPhoto(ThisItem.Email),
'profile')
)
Use the below formula in Image control
Office365Users.UserPhotoV2(<your email>)
Suppose you have a collection col_AllEmployeeResults & you are showing Title & Email fields in combobox. You want an additional Select option to show in the combobox. Put below in the Items property:
Ungroup(
Table(
{items: Table({Title: "Select", Email: "Select"})},
{items: ShowColumns(Filter(col_AllEmployeeResults, IsActive <> false), "Title", "Email")}
),
"items"
)
then search for "Streamlining Integration: Using Service Principal authentication on Custom connectors with Microsoft Graph Applicati...