colindexnum
Colindexnum is a parameter name used in data-access and spreadsheet interfaces to specify the column index within a tabular data structure from which a value should be retrieved. It is typically an integer and usually interpreted as 1-based, meaning 1 refers to the leftmost column of the provided range or table, 2 to the next column, and so on. The exact spelling and usage vary by API or function, with common variants including col_index_num, ColIndexNum, and colindexnum.
In practice, the concept is most familiar from lookup-like functions. For example, in Excel's VLOOKUP function,
Notes on usage: while many environments adopt a 1-based convention, some APIs use 0-based indexing, requiring
See also: VLOOKUP, HLOOKUP, INDEX, MATCH, table_array, 1-based indexing.