AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones Tabla dinámica
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
<Pivot table>.ListPositionHeader (Function)
In french: <Tableau croisé dynamique>.ListePositionEntête
Returns all values associated with a row or column header in a Pivot Table control.
Example
// Returns all countries displayed in the Pivot Table control
arrPos is array of pvtPosition
arrPos = PVT_Statistics.ListPositionHeader(COL_Country)
FOR EACH dim OF arrPos
// Displays the total for each country if > 10000
IF VAL_TO[dim] > 10000
Trace(dim.Country + ": " + VAL_TO[dim])
END
END
 
// Returns all cities displayed in the Pivot Table control
arrPos = PVT_Statistics.ListPositionHeader(COL_City)
FOR EACH dim OF arrPos
// Traces the French cities
IF (dim.Country ~= "FRANCE") THEN
Trace(dim.City)
END
END
Syntax
<Result> = <Pivot Table control>.ListPositionHeader(<Header>)
<Result>: Array of pvtPosition
Array of pvtPosition variable containing the list of elements corresponding to the specified header.
<Pivot Table control>: Control name
Name of the Pivot Table control to be used.
<Header>: Character string
Name of the row or column header for which the different elements must be listed. This header must be visible and it must be displayed in the control.
Remarks
In the result array:
  • The headers of parents are filled.
  • The headers of children or other axes have "*" for value (.Cumulated = True).
The same value can be returned several times with a different parent. For example, if we want to retrieve the list of vehicle models per country, the same model can be used in several countries.
Component: wd290obj.dll
Versión mínima requerida
  • Versión 23
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local