power bi
19 TopicsUsing Query results cache in Azure Data Explorer (aka Kusto) from Power BI
Azure Data Explorer can maintain results of queries in cache and so shorten response times of subsequent queries and also save significant resources. From Power BI we can enable these caching options.4.4KViews3likes0CommentsUsing .show queries to understand and optimize the KQL sent from PBI to Kusto
You use Kusto /ADX / KQL databases in Fabric with Power BI. You want to see the queries send to the backend from PBI and try to optimize the behavior. This article includes a query starting with the ".show queries" command that can help you identify the queries that need your attention4.2KViews2likes0CommentsSearch text in a Kusto/ADX table using any number of terms from Power BI
In a table we have a free text column. Our goal is to return rows in which the text includes a list of terms which are pieces of text surrounded by special characters like comma, parentheses, space etc. We don't have such a filter in PBI so we'll use combination of a KQL operator - has_any and the mechanism of M dynamic parameters.2.6KViews2likes0CommentsUsing Dual Mode dimension in Power BI with ADX data
Dual mode provides the best of using import mode and Direct Query mode for dimensions in PBI By using dual mode, you can reduce significantly the number of queries sent to ADX from PBI. The queries that involve the large tables using Direct Query will still be running entirely in ADX.2.8KViews2likes0CommentsHow to use M dynamic parameters without most limitations
In the article and the example, I show how to feed more than one parameter from a single table and a single slicer. Selecting the values is done in a friendly way for the user, and a few more steps for the PBI developer.2.9KViews1like0CommentsFiltering and visualizing Kusto data in local time
Datetime values in Kusto (aka Azure Data Explorer/ADX/KQL database in Fabric) are assume to be in UTC time. In many cases users want to filter the data and see the results using their local time. This article compares different approaches to achieve this result and do it in an efficient way. The Kusto engine includes some new optimizations in this area but still caution is recommended. KQL examples that can be run on test data and are included also a paragraph and an example on how to implement in Power BI5.7KViews1like0CommentsCross highlight when using direct query in PBI
The default behavior of Power BI is that every visual can filter any other visual. This is fine when the model is using import mode and all queries are very fast and cheap. With Direct Query we need to be much more careful about the number of queries generated and send to the backend source2.9KViews1like0Comments