Hi @Anonymous
Sharepoint will be updated based on the dropdown and when the user clicks an icon on the gallery.
Patch(
[@Projects],
LookUp(
[@Projects],
ID = ThisItem.ID
),
If(
"FY" in Dropdown1.Selected.Value,
{
Q1MappedAct: "H",
Q2MappedAct: "H",
Q3MappedAct: "H",
Q4MappedAct: "H"
},
"Q1" in Dropdown1.Selected.Value,
{Q1MappedAct: "H"},
"Q2" in Dropdown1.Selected.Value,
{Q2MappedAct: "H"},
"Q3" in Dropdown1.Selected.Value,
{Q3MappedAct: "H"},
"Q4" in Dropdown1.Selected.Value,
{Q4MappedAct: "H"}
)
)
Please let me know how the year is mapped to SP. So that we can change the patch command