QlikSense: Creating a Show and Hide button in layout container

Поділитися
Вставка
  • Опубліковано 17 кві 2024
  • Full intro to dashboarding tutorial: • QlikSense for beginner...
    Build your dashboard tutorial: • Build your first app i...
    Script editor tutorial: • QlikSense Script Edito...
    🎓 Get the Qliksense masterclass : www.thinkmetrics.se/masterclass
    📕 Get the Formula CheatSheet: crafty-knitter-8087.ck.page/p...
    Use Promocode: UA-cam to get 20% off
    🤖 Get the new AI & QlikSense : Integrating ChatGPT into Qliksense. Get GPT 3.5 Turbo & Text-Davinci-003 model script : crafty-knitter-8087.ck.page/p...
    Calendar script: kaush.gumroad.com/l/zAbiWC
    Longer length indepth chatGPT tutorial:
    • QlikSense & ChatGPT: H...
    Download the Data file: kaush.gumroad.com/l/znwmbv
    #qliksense #dataviz #qlik #chatgpt #ai
    Sign up for Qlik business free 30 days trial to learn if you don't have access to Qlik : www.qlik.com/us/trial/qlik-se...
    ****************************************************************************
    **********************************************************************
    Struggling to get your work done? Check out:
    📓 Lazy Man's Guide to productivity, become super productive: gumroad.com/l/FssWH
    🚀 Productivity Masterclass: Take my Master course on Overcoming procrastination from a former serial procrastinator: www.udemy.com/course/master-c...
    📚 Read on Kindle the simplest way to become ultra-productive:
    www.amazon.com/Lazy-Mans-Guid...
    🐦 Twitter - / kaush_ms
    TikTok - @thinkmetrics
    WHO AM I:
    🙋🏻‍♂️ I'm Kaush, a Data Analyst and Data Visualization Developer working for a tech company. I live and work in Sweden. I make videos about technology, productivity, and lifestyle design. Say hi to me on Twitter 😃

КОМЕНТАРІ • 8

  • @GracefulTalesPluto
    @GracefulTalesPluto 3 місяці тому +1

    super super.. I am going to use it in my sheets, thank you Qlik-boy!

  • @TheNovember6
    @TheNovember6 2 місяці тому +1

    Super video. Shouldn't there be a standard value to make the button appear when starting up the app?

    • @thinkmetrics
      @thinkmetrics  2 місяці тому +1

      Yea. Make the variable value = 1 to begin with

  • @bodybuildingmotivation5438
    @bodybuildingmotivation5438 3 місяці тому +1

    can you also make video on qlik admin

  • @ushakumari8474
    @ushakumari8474 Місяць тому +1

    Hi, I have got a question asked in an interview. I have to rank the data in the backend. How can I achieve this???
    Region Sales
    North 5000
    South 1000
    East 2000
    West 600
    Desired Output
    Region Sales Rank
    North 5000 1
    East 2000 2
    South 1000 3
    West 600 4

    • @thinkmetrics
      @thinkmetrics  Місяць тому +1

      data_temp:
      load * inline [
      Region, Sales
      North, 5000
      South, 1000
      East, 2000
      West, 600
      ];
      data:
      Load
      Region,
      RowNo(),
      sum(Sales) as sales_total
      resident data_temp
      group by Region order by Sales desc;
      drop table data_temp;