I have a drop down pulling from a SharePoint list. The default value of the drop down is set to the first user listed in the drop down. Does anyone know how I can add "Please select" to the drop-down.
This is the data that I have under Items:
Sort(Filter('Contacts List', 'Variance Approver'.Value="MfgEng" ||'Variance Approver'.Value="QA"),Title,Ascending)
That worked! Thank you so much!
Hi @MicroMarc365 ,
Please try:
Ungroup(
Table(
{Value:Table({Title:"Please Select"})},
{Value:Sort(Filter('Contacts List', 'Variance Approver'.Value="MfgEng" ||'Variance Approver'.Value="QA"),Title,Ascending)}
),
"Value"
)
Best Regards,
Bof
WarrenBelz
89
Most Valuable Professional
MS.Ragavendar
58
Michael E. Gernaey
42
Super User 2025 Season 1