Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

QuickList.DeleteColumn

Queries a column from each line in a list.

Component Version macOS Windows Linux Server iOS SDK
QuickList 15.5 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "QuickList.DeleteColumn"; List; Separator; Column { ; ReturnNewList } )   More

Parameters

Parameter Description Example Flags
List The reference to the quicklist. $List
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
ReturnNewList Pass 1 to return result as new QuickList.
This new list must be freed later using QuickList.Release function. Pass 0 (Default) to modify the list in the List parameter.
0 Optional

Result

Returns list, OK or error.

Description

Queries a column from each line in a list.

Examples

Try the function by deleting a column:

Let([
    list = MBS("QuickList.New"; "1-a-A¶2-b-B¶3-c-C"; ¶);
    r = MBS("QuickList.DeleteColumn"; list; "-"; 1);
    text = MBS("QuickList.GetList"; list);
    r = MBS("QuickList.Release"; list)
]; text)

See also

Release notes

Blog Entries

This function checks for a license.

Created 11st October 2025, last changed 16th November 2025


QuickList.DeCombine - QuickList.Deserialize