HypGetRowCount
Describes the Oracle Smart View for Office VBA function, HypGetRowCount.
Cloud data provider types: Oracle Analytics Cloud - Essbase, Planning (ad hoc only), Planning Modules (ad hoc only), Financial Consolidation and Close (ad hoc only), Tax Reporting (ad hoc only)
On-premises data provider types: Oracle Essbase, Oracle Hyperion Planning (ad hoc only), Oracle Hyperion Financial Management (ad hoc only)
Description
HypGetRowCount() returns the number of row dimensions.
Note:
It is assumed that a call has already been made to HypGetSourceGrid to initialize the dynamic link query, which contains the information about the active data provider and the grid on the worksheet.
Syntax
HypGetRowCount()
Return Value
Returns number of row dimensions if successful; otherwise, returns the appropriate error code.
Example
Declare Function HypGetRowCount Lib "HsAddin" () As Long
Sub Example_HypGetRowCount()
Dim vtGrid As Variant
Sts = HypConnect(Empty, "UserName", "Password", "MyDemoBasic")
Sts = HypRetrieve(Empty)
Range ("B2").Select
Sts = HypGetSourceGrid (Empty, vtGrid)
Sts = HypGetRowCount ()
End sub