Hi Team,
I am trying to update a sharepoint list (contains profiles of users), based on different skills they are selecting from combobox, while doing that I am checking if skill is already listed against their name in sharepoint, however my logic is failing with some basic mistake as if the last condition value is true, only then it is patching else no:
Code:
ForAll(ComboBox2.SelectedItems,
If(IsEmpty(Filter('IW Profiles', Email = User().Email, Skill = ComboBox2.Selected.Title)),
Patch( 'IW Profiles', Defaults('IW Profiles'),
{Title : User().FullName,
Email : User().Email,
'Added On' : Now(),
Skill : ComboBox2.Selected.Title})));
Current entries in sharepoint list for user:
HTML
C#
PYTHON
JAVA
If user selects :
PYTHON
C/C++
>>> it is patching C/C++ successfully
If user selects:
C/C++
PYTHON
>>> not patching the record
Please suggest where I am wrong, thank you.
Solved! Go to Solution.
Hi @jTiwari ,
Try this
ForAll(
ComboBox2.SelectedItems as aPatch,
If(
IsBlank(
LookUp(
'IW Profiles',
Email = User().Email &&
Skill = aPatch.Title
).Skill
),
Patch(
'IW Profiles',
Defaults('IW Profiles'),
{
Title : User().FullName,
Email : User().Email,
'Added On' : Now(),
Skill : aPatch.Title
}
)
)
);
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.
Hi @jTiwari ,
Try this
ForAll(
ComboBox2.SelectedItems as aPatch,
If(
IsBlank(
LookUp(
'IW Profiles',
Email = User().Email &&
Skill = aPatch.Title
).Skill
),
Patch(
'IW Profiles',
Defaults('IW Profiles'),
{
Title : User().FullName,
Email : User().Email,
'Added On' : Now(),
Skill : aPatch.Title
}
)
)
);
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.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
182 | |
52 | |
41 | |
40 | |
34 |
User | Count |
---|---|
251 | |
81 | |
71 | |
66 | |
66 |