VP SET FORMULA
VP SET FORMULA ( rangeObj : Object ; formula : Text { ; formatPattern : Text } )
Parâmetro | Tipo | Descrição | ||
---|---|---|---|---|
rangeObj | Object | -> | Objeto intervalo | |
formula | Text | -> | Fórmula ou método 4D | |
formatPattern | Text | -> | Formato do campo |
Descrição
The VP SET FORMULA
command assigns a specified formula or 4D method to a designated cell range.
Em rangeObj, passe um intervalo de células (criado, por exemplo, com VP Cell
ou VP Column
) cujo valor você deseja especificar. Se rangeObj incluir várias células, a fórmula especificada será vinculada em cada célula.
The formula parameter specifies a formula or 4D method name to be assigned to the rangeObj.
If the formula is a string, use the period
.
as numerical separator and the comma,
as parameter separator. If a 4D method is used, it must be allowed with theVP SET ALLOWED METHODS
command.
The optional formatPattern defines a pattern for the formula.
You remove the formula in rangeObj by replacing it with an empty string ("").
Exemplo 1
VP SET FORMULA(VP Cell("ViewProArea";5;2);"SUM($A$1:$C$10)")
Exemplo 2
Para remover a fórmula:
VP SET FORMULA(VP Cell("ViewProArea";5;2);"")
Exemplo 3
VP SET FORMULA($range; "SUM(A1,B7,C11)") //"," para separar parâmetros