Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Maddineni_S
Contributor III
Contributor III

compare create week & close week columns if same return zero and if diff return count close week

Hey guys,

 

i have two two columns of data one is created week number another one is closed week. i want to compare two columns and if both columns have same week then zero else it should return count of closed week data.

also i want lastest 8 weeks chart i need.

Submit Week_Num Resolved Week_Num
42 42
42 42
43 46
43 45
42 42

 

Count({<Source={'Mc2_nuclues'},Submit_Wk_num = {">$(vmax_weeks)"}>}[Incident ID])

Labels (4)
3 Replies
pedrobergo
Employee
Employee

Hi @Maddineni_S 

You have the table, so you create a direct measure to sum that.

Let me call this column as OutOfWeek.

SUM(if((ResolvedWeek_Num - SubmitWeek_Num )>0,1,0))

You can use Set Analysis on this formula:

SUM( {<Source={'Mc2_nuclues'} ,Submit_Wk_num = {">$(vmax_weeks)"}>}  if((ResolvedWeek_Num - SubmitWeek_Num )>0,1,0) )

Then you can use on charts, tables and KPIs.

[],

Pedro

Maddineni_S
Contributor III
Contributor III
Author

its not working 

pedrobergo
Employee
Employee

You need to give more details to help you. 

 

Pedro