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: 
QlikSenseBeginner
Contributor II
Contributor II

Select the Min and Max salary from the excel column as filtered.

1) Select the Min and Max salary value from the excel column 'Gross Salary' 

2) After which, Minus 500 dollars from the min value and add 500 to the max value identified.

3) Show the min and max result (after minus 500 and add 500) each in a KPI chart.

Write a set analysis to filter this. 

Employers Gross Salary
ABC 3000
ABC 5583
ABC 3600
ABC 2500
ABC 7000
ABC 2500
ABC 2500
ABC 4333
ABC 7500
ABC 6000
ABC 2500
ABC 7100

 

Really hope you can help me with this.  Thanks. 

Labels (6)
1 Solution

Accepted Solutions
pallavsi_08
Contributor II
Contributor II

Hi,

You can use max and min to get the expected output.

Max([Gross_Salary])+500 as Max_Salary,
Min([Gross_Salary])-500 as Min_Salary,

View solution in original post

1 Reply
pallavsi_08
Contributor II
Contributor II

Hi,

You can use max and min to get the expected output.

Max([Gross_Salary])+500 as Max_Salary,
Min([Gross_Salary])-500 as Min_Salary,