ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Spreadsheet functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Adds a calculation formula into a Spreadsheet control found in a window.
Example
//  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:
The Spreadsheet control 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,
- ...
Component: wd290obj.dll
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help