matchListAB( ListA ; ListB; match_Value; match_operator ; getN )
Rate this function: Average rating: 2.5 (2 votes) Discuss this Custom Function
Bruce Robertson, Concise Design
http://concise-design.com
Returns items from ListB where corresponding value of ListA meet condition. Option to return item position instead.
Sample Input:
Let([
ListA = "9¶8¶1¶2¶3¶4";
ListB = "9A¶8A¶1A¶2A¶3A¶4A";
matchValue = "3";
matchop = ">=" ];
MatchlistAB( ListA; ListB; matchValue; matchop; 1 )
) |
|
Sample Output:
|
Description:
Returns list of items from listB where cfMatch result is 1 for corresponding value of ListA
If ListB is empty then items from ListA are returned where cfMatch result is 1
If getN is 1 (or greater) then instead of returning the matching item, its position in the list is returned.
ListB can be empty; but otherwise an error is returned if valueCount ListB < valueCount ListA.
Dependent on custom function cfMatch
Recursive function
Bruce Robertson - Concise Design
Last updated 1/31/2010
Examples
Let([
ListA = "9¶8¶1¶2¶3¶4";
ListB = "9A¶8A¶1A¶2A¶3A¶4A";
matchValue = "3";
matchop = ">=" ];
MatchlistAB( ListA; ListB; matchValue; matchop; 0 )
)
RESULT:
9A
8A
3A
4A
Let([
ListA = "9¶8¶1¶2¶3¶4";
ListB = "9A¶8A¶1A¶2A¶3A¶4A";
matchValue = "3";
matchop = ">=" ];
MatchlistAB( ListA; ListB; matchValue; matchop; 1 )
)
RESULT:
1
2
5
6
Note: these functions are not guaranteed
or supported by BrianDunning.com. Please contact the individual
developer with any questions or problems.
This is my Custom Function and I want to
edit it
Discuss:There are no comments yet. Be the first to post a comment about this Custom Function! Please try to keep it brief & to the point. Anyone can post:
|
Newest Custom Functions:
| 1. |
MaxLength ( field, foundCnt ) |
| |
(Thu, Jul 29, 4:37pm) |
| 2. |
DayCounter ( Date_Start ; Date_End; Days_of_Week ) |
| |
(Wed, Jul 28, 1:20pm) |
| 3. |
Is_FM_Go_iPad |
| |
(Fri, Jul 23, 7:55am) |
| 4. |
Is_FM_Go |
| |
(Fri, Jul 23, 7:54am) |
| 5. |
IsFilled ( field ) |
| |
(Wed, Jul 21, 7:19am) |
| 6. |
DateQuarterAsRange ( theDate ) |
| |
(Thu, Jul 15, 5:37pm) |
| 7. |
DateQuarterEnd ( theDate ) |
| |
(Thu, Jul 15, 5:35pm) |
| 8. |
DateQuarterBegin ( theDate ) |
| |
(Thu, Jul 15, 5:30pm) |
 |
|