GetCellType

Gets the cell type. This function can be used in these types of rules:

Syntax

HS.GetCellType("POVExpression")

where POVExpression is a valid point of view.

Return Value

The type for the specified cell.

Valid types are:

Example

This example checks to see if the cell type is EXPENSE. If it is, then statements between the If...Then and End If statements are executed.

If HS.GetCellType("S#Actual.C4#[None]") = "EXPENSE" Then
  ...
End If