Sisense Community logo
    • Community Feedback
    • Chapters
    • Events
    • Forums
      • Help and How To
      • Product Feedback Forum
      • Strategy & Use Cases
    • Blogs
    • KB Docs
      • KB Docs
      • Add-Ons & Plug-Ins
      • APIs
      • Best Practices
      • Blox
      • CDT
      • Cloud Managed Service
      • Data Models
      • Data Sources
      • Embedding Analytics
      • How-Tos & FAQs
      • Onboarding
      • PySisense
      • Security
      • Sisense Administration
      • Sisense Intelligence & AI
      • Troubleshooting
      • Widget & Dashboard Scripts
    • Support
    • Learning
      • Sisense Academy: Free Courses and Certifications
      • Official Developer Documentation
      • Official Product Documentation
      • Official Sisense Youtube Channel
      • Sisense Compose SDK Playground
    • Use Case Gallery
    All PostsDiscussionsBlogsIdeasQuestions
    Leaderboards
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
    •                    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
    Discussions
    • HomeChevronRightIcon
    • All postsChevronRightIcon
    Help and How-To

    Created Mar 17, 2026

    18 members

    601 discussions

    Connect, learn, and master Sisense with help from your peers and experts. 💡

    Help and How-To
                       
                                       
    • Question
      • Help and How-ToChevronRightIcon
                       
      Dashboard exports breaking layout when sent as PDF or Excel? Report Studio is built to fix that, without leaving Sisense
      Ido Darnell
      Ido Darnell
      Posted 5 days ago
      0
               
    • Discussion
      kgupta_egencia

      kgupta_egencia

      Ecube build SQL tagging
                               

      Hello, We are working with snowflake data source and have requirement to capture meta for ecube build query from data source. Please suggest how I can set query tagging ? SET QUERY_TAG = "{Team_Name:TEAM, Application:Sisense ecubename}" I did check pre build plugins but did not get option to set data source session settings or initial sql settings in python script. Please suggest.

      6 months agolast reply 3 weeks ago
      3
               
    • Question
      • Help and How-ToChevronRightIcon
                       
      No Export dashboard option after upgrading?
      Garrick Ramsey
      Garrick Ramsey
      Posted 3 weeks ago
      0
               
    • Discussion
      Garrett Wolfe

      Garrett Wolfe

      Adding Dashboard Descriptions with a Modal Info Icon
                       

      Every widget in Sisense supports descriptions, but what about dashboards themselves? Sometimes you need to explain a dashboard's purpose or guide users on how to interact with it effectively. We solved this by adding an info icon to the top toolbar that triggers a modal with the dashboard description. Add this script at the dashboard level and update the CONFIG object at the top with your custom text. We also included a feedback email in the configuration, making it easy for users to reach out with questions or suggestions. If you'd prefer, you could split this into a separate feedback button instead of including it in the description modal. Another nice touch: you can swap the ℹ️ emoji for a different icon to match the style of Sisense's built-in widget info icons. Let me know if this is helpful or if it this feature already exists and I have missed it.  // Configuration - update these values for your dashboard const CONFIG = { feedbackEmail: 'feedback@feedback.com', description: 'You can put your additional context here.' }; $(document).ready(function() { setTimeout(function() { // Clean up any existing instances $('#dashboard-info-icon, #dashboard-info-modal').remove(); // Create info button const infoButton = $('<button id="dashboard-info-icon" title="Dashboard info">ℹ️</button>').css({ cursor: 'pointer', background: 'none', border: 'none', fontSize: '20px', padding: '5px 10px', color: '#666' }); // Add button to toolbar (after Widget button if found, otherwise append to toolbar) const widgetButton = $('button:contains("Widget")').filter(':visible').first(); if (widgetButton.length) { widgetButton.after(infoButton); } else { $('.dashboard-toolbar').append(infoButton); } // Create modal const modal = $(` <div id="dashboard-info-modal" style="display:none; position:fixed; z-index:10000; left:0; top:0; width:100%; height:100%; background:rgba(0,0,0,0.5);"> <div style="background:white; margin:15% auto; padding:30px; border-radius:8px; width:500px; max-width:90%; box-shadow:0 4px 6px rgba(0,0,0,0.1);"> <h2 style="margin-top:0; color:#333;">Dashboard Description</h2> <p style="line-height:1.6; color:#555;">${CONFIG.description}</p> <p style="line-height:1.6; color:#555; margin-top:20px;"> <strong>Feedback:</strong> <a href="mailto:${CONFIG.feedbackEmail}" style="color:#0078d4; text-decoration:none;">${CONFIG.feedbackEmail}</a> </p> <div style="text-align:right; margin-top:20px;"> <button id="close-modal" style="background:#0078d4; color:white; border:none; padding:10px 24px; border-radius:4px; cursor:pointer; font-size:14px; font-weight:500;">OK</button> </div> </div> </div> `); $('body').append(modal); // Event handlers infoButton.click(function() { modal.fadeIn(200); }); $('#close-modal').click(function() { modal.fadeOut(200); }); // Close when clicking outside modal modal.click(function(e) { if (e.target.id === 'dashboard-info-modal') { modal.fadeOut(200); } }); // Close with ESC key $(document).keydown(function(e) { if (e.key === 'Escape' && modal.is(':visible')) { modal.fadeOut(200); } }); }, 1000); });  

      6 months agolast reply 1 month ago
      3
               
    • Idea
      • Help and How-ToChevronRightIcon
      More information with less scrolling: here's how tab-based navigation can level up your Sisense dashboards
      Mia Isaacson
      Mia IsaacsonPosted 1 month ago
               
      0
               
    • Question
      • Help and How-ToChevronRightIcon
                       
      Single Filter against multiple columns
      ramansingh89
      ramansingh89
      Posted 1 year ago • Last reply 2 months ago
      8
               
    • Idea
      • Help and How-ToChevronRightIcon
      If your dashboard toolbar helping your users? Or is it just....there?
      Mia Isaacson
      Mia IsaacsonPosted 2 months ago
               
      0
               
    • Discussion
      Rose Holmes-Minton

      Rose Holmes-Minton

      Is it possible to dynamically change the data model for an accrd or drill dashboard
                               

      I created a Accordion dashboard and a Drill dashboard to test the Accordion and Jumpto Sisense features.   The features work well as long as the data model for the Accordion dashboard and the main dashboard are the same. However, when I change the data model for the main dashboard to a different data model, the datamodel for sub dashboard does not change. Therefore the data in the sub dashboard is not displaying information that pertains to currently selected data model. What can I do to remedy this?

      4 months agolast reply 2 months ago
      4
               
    • Question
      • Help and How-ToChevronRightIcon
                       
      Amending Automated Email Content
      Mark Holt
      Mark Holt
      Posted 2 months ago • Last reply 2 months ago
      1
               
    • Idea
      • Help and How-ToChevronRightIcon
      Are your end users losing filter context every time they switch dashboards?
                                                                                       
      Mia Isaacson
      Mia IsaacsonPosted 2 months ago
               
      0
               
    • Idea
      • Help and How-ToChevronRightIcon
      Your Sisense charts are clean, but are your tooltips telling the whole story?
                                                                                               
      Mia Isaacson
      Mia IsaacsonPosted 2 months ago
               
      0
               
    • Discussion
      dsonam

      dsonam

      Feature Request: Expose build error details via /api/v2/builds endpoint
               

      We're using the /api/v2/builds endpoint to track ElastiCube build outcomes (successes, failures, retries). The endpoint works well for tracking basic build task status, but we are running into severe limitations regarding failure visibility. Currently, when the build fails, the API response only returns a status of [Failed] with no accompanying error message or failure reason. The actual error detail is visible in the Sisense UI under the cube's build history, but there is no way to retrieve it through the REST API. Request:  Expose the build error message or error category as fields in the GET /api/v2/builds and GET /api/v2/builds{buildId} response objects. Even a brief top-level error summary would be sufficient to make monitoring and alerting useful. This would benefit any team building operational dashboards and alerting scripts around Sisense build reliability, making automated monitoring truly actionable.  

      5 months agolast reply 2 months ago
      1
               
    …