Skip to main content

NumericCount - script function

NumericCount() returns the number of numeric values found in the expression, as defined by a group by clause.

Syntax:  

NumericCount ( [ distinct ] expr)

Return data type: integer

Arguments:  

Argument Description
expr Expression The expression or field containing the data to be measured.
distinct If the word distinct occurs before the expression, all duplicates are disregarded.

Examples and results:  

Add the example script to your app and run it. Then add, at least, the fields listed in the results column to a sheet in our app to see the result.

To get the same look as in the result column below, in the properties panel, under Sorting, switch from Auto to Custom, then deselect numerical and alphabetical sorting.

Example Result

Temp:

LOAD * inline [

Customer|Product|OrderNumber|UnitSales|UnitPrice

Astrida|AA|1|4|16

Astrida|AA|7|10|15

Astrida|BB|4|9|9

Betacab|CC|6|5|10

Betacab|AA|5|2|20

Betacab|BB||| 25

Canutility|AA|||15

Canutility|CC| ||19

Divadip|CC|2|4|16

Divadip|DD|7|1|25

] (delimiter is '|');

NumCount1:

LOAD Customer,NumericCount(OrderNumber) as NumericCountByCustomer Resident Temp Group By Customer;

 

Customer
Astrida
Betacab
Canutility
Divadip

NumericCountByCustomer
3
2
0
2
LOAD NumericCount(OrderNumber) as TotalNumericCount Resident Temp; The second statement gives:
TotalNumericCount
7
in a table with that dimension.

Given that the Temp table is loaded as in the previous example:

LOAD NumericCount(distinct OrderNumber) as TotalNumeriCCountDistinct Resident Temp;

TotalNumericCountDistinct
6
Because there is one OrderNumber that duplicates another, so the result is 6 that are not duplicates..

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!