Hi everyone!
I have a Datacard in my PowerApps form and Label below the DataCard to concat the values
so primary IT Skills is a text column, when he enters a skill and clicks on add it should be displayed on the label which is inside the datacard and when he clicks on the clear button it should clear the previous entered skill from the label.
I have used following formula but its not working properly
Onselect of my Datacard value ClearCollect(SelectedSkillsCollection, {Skill: DataCardValue9_1.Text})
onselect of my add button
Collect(
SelectedSkillsCollection,
{Skill: DataCardValue9_1.Text}
);
Reset(DataCardValue9_1);
onselect of my clear button
RemoveIf(SelectedSkillsCollection, Skill = ThisItem.Skill)
Could anyone please help to fix this issue , Iam Microsoft dataverse tabels as my datasource when he submits I want the label values should be recorded din the tables

Report
All responses (
Answers (