Topics
All
MacOS
(Only)
Windows
(Only)
Linux
(Only, Not)
iOS
(Only, Not)
Components
Crossplatform Mac & Win
Server
Client
Old
Deprecated
Guides
Examples
Videos
New in version:
9.3
9.4
9.5
10.0
10.1
10.2
10.3
10.4
10.5
10.6
Statistic
FMM
Blog
List.FindUnequals
Finds unequal items in both lists.
| Component | Version | macOS | Windows | Linux | Server | FileMaker iOS SDK |
| List | 4.2 | Yes | Yes | Yes | Yes | Yes |
Parameters
| Parameter | Description | Example | Flags |
|---|---|---|---|
| List1 | The first list. | "Hello" ¶ "World" | |
| List2 | The second list. | "Hello" ¶ "Friends" | |
| NoReturnEnding | Pass 1 to have no extra newline character on the end of the returned list. Default is 0 to include one to easily concat lists. | 1 | Optional |
| NotFromSecondList | Pass 1 to only returns items from first list not present in second list. Default is 0 to get items from both lists. |
0 | Optional |
Result
Returns new list.
Description
Finds unequal items in both lists.Examples
Find non equal entries in both lists:
MBS( "List.FindUnequals"; "Hello¶World"; "Hello¶Friends"; 1 )
Example result:
"World
Friends"
Find items in first list which are not in second list:
MBS( "List.FindUnequals"; "Hello¶World"; "Hello¶Friends"; 1; 1 )
Example result: "Hello"
See also
Example Databases
Blog Entries
Release notes
- Version 7.3
- Added parameter for QuickList.FindUnequals and List.FindUnequals to only return items from first list.
Created 18th August 2014, last changed 27th May 2017
List.FindEquals - List.GetValue
Feedback: Report problem or ask question.
Links
MBS Xojo Plugins