Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
kkarlste
Creator
Creator

PivotTable button show only over 100 value columns

I don't understand how I can do this button

PivotTable button show only over 100 value columns

kkarlste_0-1701868074562.png

 

Labels (5)
3 Replies
aruneshgupta
Creator
Creator

Can you please explain or provide example ?

kkarlste
Creator
Creator
Author

I must show on pivot table hours are only over 80 h per week.
I must in addition, you must be selected year

This is the formula with which the hours are now calculated in the pivot table
sum (Hours)

I want button or something
that I can show the table cell only by pressing the button more than 80 hours

kkarlste
Creator
Creator
Author

I don't know  this not working,
I want all hours = työtunnit
And I want dimension where over 80 hours

(FAKTA)
LOAD 
//     ApplyMap('Date_to_Period', text(date(pvm8,'YYYYMMDD'))) as Period,
    ApplyMap('Date_to_Period', text(date(pvm8,'YYYYMMDD'))) & '|' & text(date(pvm8,'YYYYMMDD')) as %DateKEY,
//     text(date(pvm8,'YYYYMMDD')) as pvm8,
    heno as personnr,
    callname,
    lastname,
text('000'&costcenter) as ProfitCenter,
    liiketoimintayksikkonimi,
    liiketoimintayksikkoselite,
    palveluyksikkonimi,
    palveluyksikkoselite,
    palvelualuenimi,
    palvelualueselite,
 sum ( tunnit > '80') as over80,
    tunnit as Työtunnit;
SQL SELECT convert (datetime,pvm8) as pvm8,
    heno,
    callname,
    lastname,
    costcenter,
    liiketoimintayksikkonimi,
    liiketoimintayksikkoselite,
    palveluyksikkonimi,
    palveluyksikkoselite,
    palvelualuenimi,
    palvelualueselite,
    tunnit
FROM ISSQlikView.dbo."tb_src_HR_employee_working_hours_day_level";