ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Displaying Monthly Changes Hi there, To save monthly widget values: Use a database or files. Record values and timestamp nightly. Create a structure for data. Retrieve past values by filtering timestamps. Update dashboard for monthly view. https://community.sisense.com/t5/developer-forum/displaying-monthly-changes/snowflake trainingtd-p/18993 Hope this helps! Re: Show Last Updated Date on Dashboard Hello, To display the last refresh time on your dashboard, add a timestamp widget or use a simple JavaScript script. Check your dashboard tool's documentation for built-in features. Here's a basic script: <p id="lastRefresh">Data last refreshed: </p> <script>devops course>function updateRefreshTime() {document.getElementById('lastRefresh').textContent = 'Data last refreshed: ' + new Date().toLocaleString();} window.onload = updateRefreshTime;</script> Adjust based on your tool's capabilities. I hope this will help you. Thanks. Re: MongoDB driver-version compatibility Hello, As per my knowledge, to align with your customers who are upgrading to MongoDB versions 5 or 6, you'll need to update your drivers accordingly. Since your current driver version 1.3.11 is not compatible with MongoDB 4.2+, consider upgrading to a version that supports the newer MongoDB releases. Check the official MongoDB documentation or your driver's documentation for the recommended driver version compatible with MongoDB 5 or 6. I hope this will help you. Re: Bubble Chart Limiting Hello, To limit the number of displayed bubbles and show only a subset around the selected data point, you can adjust the visualization settings. Look for options like "Radius" or "Zoom" to focus on a specific area. If your tool or platform supports it, check the documentation for details on customizing bubble charts. Happy visualizing! Re: Connecting to Clickhouse Hello, Many people try to establish Live Connections for interactive queries and aggregations through Sisense Notebooks. Additionally, these users have seamlessly loaded data from Clickhouse into Elasticubes, meeting the specified criteria for success. Recently I am completed Salesforce Admin Certification and now I am working on a project . I faced same query during my certification Re: Unable to download data for one specific card Where you was try?