NoInput

Prevents users from entering data into specific cells or slices of cells. This is useful when there are accounts that are not input or calculated.

When you set up a calculated account, you in effect, are preventing users from being able to input to that account. However, if you have accounts in which data input is enabled for some dimension intersections but not for others, you can use NoInput. This function can be used in NoInput rules.

Syntax

HS.NoInput "POVExpression"

where POVExpression is a point of view.

Return Value

None.

Example

This example prohibits input into the cells that intersect the Sales account and the Budget scenario for 2014:

Sub NoInput
  HS.NoInput "S#Budget.Y#2014.A#Sales"
End Sub