Hello.
I Have to update some powerapps code to include a section about sensitive data. The power apps reads from a sharepoint list.
I have created a new column within the a sharepoint list, it is a choice column called SensitiveData, it display choice is Checkboxes (Allow multiple selections)
The values of the choice column are :
PHI
PII
SOX
None of the above
On my Form i have added a data card, with a gallery called Gallery1. Inside that Gallery, i have a checkbox called Checkbox4. This shows all the values of the choice column and allows users to select one or more than once choice.
I have the following code : , but the SensitiveData bit does not update. (as per my comment). The rest works fine.
What am i doing wrong...
Patch(
'SharePointList',
LookUp(
'SharePointList',
ID = gal_Workspaces.Selected.ID
),
{Update: {Value: "Signed"}},
{Value: {Value: "Yes"}},
{Date: Now()},
{SenstiveData: Gallery1.Selected.Checkbox4} //This is the bit that doesnt work.
);
Set(
varPopUp,
false
);
Navigate(
Confirmation,
ScreenTransition.Cover
)
What am i doing wrong?. Can someone help me update the sharepoint list to what ever options the users selects from the checkboxes. 4
Thanks