Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
deepakqlikview_123
Specialist
Specialist

Expression

Hello all,

Can you please tell me how below expression works,

 

=

count ({<Fab_Year = {$(=year(now()))},

Fab_Month = {

$(=month(now()))},

Fab_Day = {

$(=day(now()))},

Flag = {'2 Wheeler'}>}

CIS_NUMBER)
-

count ({<

Paint_Year = {

$(=year(now()))},

Paint_Month = {

$(=month(now()))},

Paint_Day = {

$(=day(now()))},

Flag = {'2 Wheeler'}>}

CIS_NUMBER)

thanks,

Deepak

1 Reply
MK_QSL
MVP
MVP

Below Expression will give you COUNT of CIS_NUMBER

Where

Fab_Year = CURRENT Year,

Fab_Month = CURRENT Month

Fab_Day = Today

and

Flag = 2 Wheeler


count ({<Fab_Year = {$(=year(now()))},

Fab_Month = {

$(=month(now()))},

Fab_Day = {

$(=day(now()))},

Flag = {'2 Wheeler'}>}

CIS_NUMBER)



The same logic is applied to 2nd expression...

Now the final result is Result of Expression 1 - Result of Expression 2