ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Formula for count with filter (Count([Id]),[age filed filter by the value between 20 and 40]) Is this format get you the result of what you expected? Re: Disabling Dashboards to Select User Groups on Sisense Hi, You can achieve this by using Pysense in easier way I guess. I have tried in our instance, it's working. Please go through this link, if you want to make any changes accordingly. https://github.com/nathangiusti/PySense from PySense import PySense config_file_location = r'C:\Users\91863\PyCharmProjects\MyPySenseTests\sampleconfig' py_client = PySense.authenticate_by_file(config_file_location) groups = py_client.get_groups() a = py_client.get_groups_by_name('Group1') dashboard = py_client.get_dashboard_by_id('6176f9b412cac600350d2d7a') for group in py_client.get_groups(): dashboard.add_share(groups,'View', True) dashboard.remove_shares(a) Re: Previous Month Comparison when Previous Month has Fewer Days(Indicator Widget) That’s really helpful, Hari. Thanks a lot. Previous Month Comparison when Previous Month has Fewer Days(Indicator Widget) Hello Everyone, We have come across one requirement for one of our customer, where days in Date as Dashboard filter and in an indicator widget primary value represents "count(Ids)" and in secondary value "pastmonth(count(Ids))". When we select filter like 12/31/21, pastmonth() will get the value of the same day of the previous month. As there is no 31st Day in 11th month, it is showing us '0'. But instead it has to show us 30/11/21 value in the secondary value of indicator widget when we select 12/31/21 in the filter. If anyone come across this kind of usecase can share your thoughts. Thanks in advance. SolvedRe: Setting the Borders for Individual Widgets in the Dashboard Thanks a lot for your help. It's working fine. Setting the Borders for Individual Widgets in the Dashboard Hi All, Is there any way to set the borders for particular individual widgets in the Dashboard? I have found the Dashboard script where it will apply the the style settings for all the widgets in it. But would like to know to set the style settings for an individual widget in the Dashboard? Solved