In sharepoint list backfill, I have a choice column called status.
My requirement is to add a value called All and also remove the status values Joined and Requirement closed from the dropdown values
Joined &Requirement closed are there in the sharepoint list but I dont want to show them in the Open backfill page
I was able to find the formula to add a value called All, however i am struggling to find formula to remove Joined and Requirement from the list
Request you to kindly guide me
Ungroup(
Table({DepartmentItems:["All"]},
{DepartmentItems:Choices('backfill'.Status)}
),
"DepartmentItems"
)