ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with windows, pages and controls
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
The DisplayEvenIfNull property is used to:
  • Determine whether a row or column in a Pivot Table control is displayed even if it contains no value.
  • Show or hide a row or column in a Pivot Table control if it does not contain any values.
Example
// The Month column will be displayed even if it contains no value
PVT_Sales.COL_Month.DisplayEvenIfNull = True
Syntax

Getting the current display mode of a row or column if it is empty Hide the details

<Result> = <Row or column name>.DisplayEvenIfNull
<Result>: Boolean
  • True if the row or column is displayed even if it is empty,
  • False otherwise.
<Row or column name>: Control name
Name of the row or column in the Pivot Table control.

Changing the display mode of an empty row or column Hide the details

<Row or column name>.DisplayEvenIfNull = <New display mode>
<Row or column name>: Control name
Name of the row or column in the Pivot Table control to be used.
<New display mode>: Boolean
  • True if the row or column must be displayed even if it is empty,
  • False otherwise.
Remarks
  • Once the property is modified, the Pivot Table control is not recalculated: it is only redisplayed.
  • If the property is initialized to True for a row or a column corresponding to a date, all the days (months or quarters) are displayed even if there is no matching data.
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/30/2023

Send a report | Local help