|
|
|
|
|
PVTListPositionHeader (Function) Returns all values associated with a row or column header in a Pivot Table control.
arrPos is array of pvtPosition
arrPos = PVTListPositionHeader(PVT_Statistics, COL_Country)
FOR EACH dim OF arrPos
IF VAL_TO[dim] > 10000
Trace(dim.Country + ": " + VAL_CA[dim])
END
END
arrPos = PVTListPositionHeader(PVT_Statistics, COL_City)
FOR EACH dim OF arrPos
IF (dim.Country ~= "FRANCE") THEN
Trace(dim.City)
END
END
Sintaxis
<Result> = PVTListPositionHeader(<Pivot Table control> , <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. Observaciones 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. Clasificación Lógica de negocio / UI: Código UI
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|