You are on page 1of 1

There is a small modification in formulas.

We will be adding
tal/total counts): in Data Rows label as below:
1)

(Not including subto

For Crosstabs

="Data Rows (Not including subtotal/total counts): " + If (Count([Fiscal Year M


onth])=0 or IsNull([Fiscal Year Month])) Then 0 Else (Sum(LineNumber())/Count([F
iscal Year Month]))
Where [Fiscal Year Month] is merged dimension (used in crosstab)
2)
Vertical table format (with only one dataprovider) then we need to use b
elow formula
="Data Rows (Not including subtotal/total counts): " + If(NumberOfRows([Datapro
vider Name])=0) Then 0 Else Sum(LineNumber())
3)
Vertical table format (with more than one dataprovider) then we need to
use below formula
="Data Rows (Not including subtotal/total counts): " + If(NumberOfRows([Datapro
vider1 Name])=0 AND NumberOfRows([Dataprovider2 Name])=0) Then 0 Else Sum(LineNu
mber())

You might also like