Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
rafaeloneil
Contributor III
Contributor III

Help to group data in a PivotTable

Good afternoon Guys,

I have the following table and I'm breaking my head to account for my data correctly:

Tabela4.png


I need to count only the chassis that had lows (Date_Baixa = null) and group them by mm / yyyy of low and Uf of origin


it would be something like this:


TabelaResultado.png


Can you give me an orientation?

4 Replies
ogautier62
Specialist II
Specialist II

Hi,

use cod_cliente, Uf, yearMonth as dimension,

and in your expression :

count({<NuChassi = E({<Date_Baixa = {'*'} >} ) >}  NuChassi)

E() is to exclude, '*' for all whiche as a value :  so you gat only nullvalues for date

regards

narayanamsn
Creator
Creator

Can you please share excel sheet instead of snapshot? I will share the solution

Thiago_Justen_

Rafael,

Você pode criar uma pivot table com:

Dimensões:

mês/ano - supondo que você a tenha criado no script monthname(Campo_Data);

cod_cliente;

uf;

Expressão:  NullCount(data_baixa)

Abs e Sucesso!!

Thiago Justen Teixeira Gonçalves
Farol BI
WhatsApp: 24 98152-1675
Skype: justen.thiago
rafaeloneil
Contributor III
Contributor III
Author

Thank you guys, It worked well.