IsCellEmpty (PQL)

Returns true if the cell result is blank or empty.

  • Returned Output: Boolean
  • Library: PQL \ Dynamic \ Grid
  • Version: 2020.10.000
  • Compatibility: Any content (regardless of data source) in the relevant parts of the application

Syntax

IsCellEmpty( <Row Integer> , <Column Integer> )

* Click on the function's arguments above for more details on the input values.

Comments
  • The row and column zero-based index numbers must be supplied to indicate which data point to return.

Examples

This example returns the value FALSE because Incumbent, Bachelors is NOT blank or empty

IsCellEmpty (0,0)

This example returns the value TRUE because New Comers, Bachelors is blank or empty

IsCellEmpty (0,1)