Cell Address Generator is an OutSystems extension that provides utility actions for converting row and column indexes into Excel-compatible references.
When generating Excel files programmatically, developers frequently need to work with Excel addresses such as:
A1 E5 AA10 AX5
or ranges such as:
A2:A100 E2:E100 AA5:AA500
This component eliminates the need to manually implement Excel column conversion logic and provides reusable actions that can be used across applications.
Converts a row and column number into an Excel-style cell reference.
RowNumber = 5 ColumnNumber = 50
CellAddress = AX5 ColumnName = AX RowName = 5
The component validates the following conditions:
Excel references require row and column numbers greater than zero.
Excel columns are generated using a Base-26 alphabetical conversion:
1 -> A 26 -> Z 27 -> AA 28 -> AB ... 703 -> AAA
The component supports any valid positive column number and is not limited to the commonly used Excel columns.