List.ColumnMatchesPostfix
-------------------------

Finds list entries which have a given postfix text.

| Component | Version | macOS | Windows | Linux | Server | iOS SDK |
|---|---|---|---|---|---|---|
| [List](component_List.md) | [16.3](newinversion163.md) | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |

MBS( "List.ColumnMatchesPostfix"; List; Separator; Column; Text { ; NoReturnEnding } ) 

**MBS**( **"List.ColumnMatchesPostfix";** /\* Finds list entries which have a given postfix text. \*/  
**$List**; /\* The list of texts to search.e.g. "Hello" \*/   
**$Separator**; /\* The separator text.  
Can be multiple characters.  
For tab separated text, pass Char(9). For CSV separated text, pass ";" or ",".e.g. Char(9) \*/   
**$Column**; /\* The index of the column to compare.  
Starts with 0 for first column.e.g. 0 \*/   
**$Text**; /\* The text to find.e.g. "Hello" \*/   
**$NoReturnEnding**) /\* Optional; 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.e.g. 1 \*/ 

### Parameters

| Parameter | Description | Example | Flags |
|---|---|---|---|
| List | The list of texts to search. | "Hello" |  |
| Separator | The separator text.   Can be multiple characters.   For tab separated text, pass Char(9). For CSV separated text, pass ";" or ",". | Char(9) |  |
| Column | The index of the column to compare.   Starts with 0 for first column. | 0 |  |
| Text | The text to find. | "Hello" |  |
| 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 |

### Result

Returns OK or error.

### Description

Finds list entries which have a given postfix text.  
We lookup the text in the column given the separator and column index and then apply the comparison there.  
Comparison is case insensitive.  
### Examples

Finds list entries with matching postfixes:

 MBS ( "List.ColumnMatchesPostfix"; "1,Hello¶2,auto¶3,World"; ","; 1; "o" )  
<small>  
Example result:   
1,Hello  
2,auto</small>### See also

- [List.ColumnMatchesPrefix](ListColumnMatchesPrefix.md)
- [List.ColumnMatchesSubString](ListColumnMatchesSubString.md)

### Release notes

- **Version 16.3**
    - Added List.ColumnMatchesPostfix, List.ColumnMatchesPrefix and List.ColumnMatchesSubString functions.

### Blog Entries

- [MBS FileMaker Plugin, version 16.3pr3](https://www.mbsplugins.de/archive/2026-06-22/MBS_FileMaker_Plugin_version_1/monkeybreadsoftware_blog_filemaker)

This function checks for a license.

Created 21st June 2026 , last changed 21st June 2026

  
[List.CSVSplit](ListCSVSplit.md) - [List.ColumnMatchesPrefix](ListColumnMatchesPrefix.md)

[HTML Version](ListColumnMatchesPostfix.shtml)