Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

what is the count() function ? and how can i use this ?

what is the count() function ? and how can i use this ?   explain me pls........................

7 Replies
swuehl
MVP
MVP

I suggest looking at the Help file or reference manual or searching the forum.

alexandros17
Partner - Champion III
Partner - Champion III

Simply is an aggregation function that counts the numbers of items under a certain condition

E.g.: Count(Customers)

Count(distinct Customers)

You can use Count() in script or in expression and in the last you can add set analysis

prma7799
Master III
Master III

Hi Sandeep,

Count()

This function returns the count of an expression over a number of records in business data as defined by a group by clause. If the distinct occurs before the expression, all duplicates will be discarded.


Syntax

count([distinct ] expression | * )


Example

Load Month, count(Sales) as NumberOfSalesPerMonth from abc.xls group by Month;

Load Month, count(distinct Customer) as CustomerBuyingPerMonth from abc.xls group by Month;

LoadMonth, count(*) as NumberOfRecordsPerMonth from abc.xls group per Month;



Type of Count function:


NumericCount()

TextCount()

NullCount()

MissingCount()


Please go through below link


Count or Count distinct?

Thanks

prajapatiamar38
Creator II
Creator II

Hi

Count():

Returns the aggregated total count of values from expression or field iterated over the chart dimension(s).

For this function it is allowed to use the distinct qualifier in combination with the total qualifier This combination is not valid for any other aggregation functions.

Examples:

coung(Sales)

count(Price*Quantity)

count(distingct Price)

count(Sales)/count(total Sales) returns sales within the selection

Thanks

Not applicable
Author

Hello Sandeep,

It s part of the Aggregation function. the basic use would be to count how many times something happen in a list.

For example, i am dealing here with hotel packages (forfait) and with the following expression, i would ask Qlikview

Everytime, you have 'Forfait' a in the column Type_Forfait, you count the value in the column Unit

=count({<Type_Forfait={'Forfait'}>} Units)

The official definition is : Returns the count of expression over a number of records as defined by a group by clause. If the word distinct occurs before the expression, all duplicates will be disregarded.

Pay attention also to the function called DISTINCT very important for that kind of activity.$

If you need more help, please provide me with some détails.

Attached, the visual use of my expression. The column "NOMBRE" returns the number of package.

2015-07-01_11h38_10.png

Best

JP 

Not applicable
Author

thanks for everyone

Not applicable
Author

You are welcome, you can then close the case have a nice day.