|
|
|
|
|
SpreadsheetAddFormula (Function) In french: TableurAjouteFormule Adds a calculation formula into a Spreadsheet control found in a window. // Â Initialize the 1st column with numbers from 1 to 10 FOR I = 1 TO 10 SpreadsheetAddData(PSHEET_Spreadsheet, 1, I, "Row " + I) END Â SpreadsheetAddData(PSHEET_Spreadsheet, 1, 1, 13) SpreadsheetAddData(PSHEET_Spreadsheet, 1, 2, 20) SpreadsheetAddFormula(PSHEET_Spreadsheet, 1, 3, "A1+A2/2") // Displays 23 SpreadsheetAddFormula(PSHEET_Spreadsheet, "A4", "A1+A2") SpreadsheetAddData(PSHEET_Spreadsheet, 1, 2, 33) // Displays 33 in the A3 cell Syntax
Adding a formula into a cell identified by its coordinates Hide the details
SpreadsheetAddFormula(<Spreadsheet control> , <Column> , <Row> , <Formula>)
<Spreadsheet control>: Control name Name of the Spreadsheet control to be used. <Column>: Integer Column number of the cell containing the formula. <Row>: Integer Row number of the cell containing the formula. <Formula>: Character string Formula to add. The first "=" character must not be included in the formula. For example: "A1+B2-A2" In case of syntax error or invalid identifier, "###" is displayed in the cell and a non-fatal error is displayed.
Adding a formula into a cell identified by its name Hide the details
SpreadsheetAddFormula(<Spreadsheet control> , <Cell name> , <Formula>)
<Spreadsheet control>: Control name Name of the Spreadsheet control to be used. <Cell name>: Character string Name of the cell to be used. For example: "A4". <Formula>: Character string Formula to add. The first "=" character must not be included in the formula. For example: "A1+B2-A2" In case of syntax error or invalid identifier, "###" is displayed in the cell and a non-fatal error is displayed. Remarks - If the cell (Column, Row) does not exist, the cell is created.
- If the cell (Column, Row) already exists, the content is deleted. It is replaced with the <Formula> formula.
- This function can only be used on a Spreadsheet control found in a window.
- The cells can be renamed (SpreadsheetAddName). You have the ability to use the name of a cell in the formula.
Related Examples:
|
Unit examples (WINDEV): The Spreadsheet control
[ + ] Using the Spreadsheet control. This example explains how to: - load an xlsx file in a spreadsheet control, - save the spreadsheet in a file, - fill the control with data coming from the database, - insert rows, columns, - access the cells and handle them (modify their value, their style, ...), - enter formulas, - ...
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|