Hi
I have a dropdown that pulls choices from a SharePoint list.
Items = Choices(CategoryData.Category) Now i want to add an extra choice to this dropdown without adding it to the SharePoint list.
I would like to add the Choice "All"

Hi
I have a dropdown that pulls choices from a SharePoint list.
Items = Choices(CategoryData.Category) Now i want to add an extra choice to this dropdown without adding it to the SharePoint list.
I would like to add the Choice "All"
Hi @JimmyWork ,
Try this - do a collection
ClearCollect(
colCategory,
{Value: "All"}
);
Collect(
colCategory,
Choices(CategoryData.Category))
)Your drop-down Items are then colCategory
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.