ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
The CalculationInProgress property allows you to determine whether the data of a Pivot Table control is being calculated (synchronously or asynchronously).
Example
// Recalculation button code
PVTCalculateAllAsynchronous(PVT_Statistics, Calculation_completed)
	INTERNAL PROCEDURE Calculation_completed(bOK is boolean)
		IF NOT bOK THEN
			Error(ErrorInfo())
			RETURN
		END
	END
// Click code of the "Invoice details" button
IF PVT_Statistics.CalculationInProgress THEN
	ToastDisplay("The data of the Pivot Table control is being calculated")
	RETURN
END
Syntax
<Result> = <Pivot Table control>.CalcInProgress
<Result>: Boolean
  • True if the data of the Pivot Table control is being calculated,
  • False otherwise.
<Pivot Table control>: Control name
Name of the Pivot Table control used.
Minimum version required
  • Version 2024
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 04/01/2025

Send a report | Local help