{"id":3568,"date":"2021-09-10T10:06:51","date_gmt":"2021-09-10T17:06:51","guid":{"rendered":"https:\/\/SUMMALAI.COM\/?p=3568"},"modified":"2021-09-10T10:06:53","modified_gmt":"2021-09-10T17:06:53","slug":"power-bi-calculatetable-function-dax","status":"publish","type":"post","link":"https:\/\/SUMMALAI.COM\/?p=3568","title":{"rendered":"Power BI: CALCULATETABLE function DAX"},"content":{"rendered":"\n<h5 class=\"wp-block-heading\">CALCULATETABLE function is a power bi filter function in DAX that evaluates a table expression in a context modified by the given filters. It returns a table of values.<\/h5>\n\n\n\n<pre class=\"wp-block-preformatted\">CALCULATETABLE(&lt;expression&gt;,&lt;filter1&gt;,&lt;filter2&gt;,\u2026)<\/pre>\n\n\n\n<p>&lt;expression&gt; is a table expression to be evaluated. A measure can not be used as expression.<\/p>\n\n\n\n<p>&lt;filter1&gt;,&lt;filter2&gt;.. is a Boolean expression or a table expression that defines a filter.<\/p>\n\n\n\n<p>Lets look at an example of&nbsp; DAX using CALCULATETABLE&nbsp; function.<\/p>\n\n\n\n<p>Here we have sample table named&nbsp;<strong>TransactionHistory<\/strong>&nbsp;which contains product details as given below.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/ds.png?resize=299%2C313&amp;ssl=1\" alt=\"\" class=\"wp-image-5481\"\/><\/figure>\n\n\n\n<p>Lets see the behaviour of CALCULATETABLE function.<\/p>\n\n\n\n<p><strong>Basic use of CALCULATETABLE function<\/strong><\/p>\n\n\n\n<p>Lets create a table named&nbsp;<strong>calctable<\/strong>&nbsp;to filter a table records for quantity &gt;1 using following DAX.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CalCtable = CALCULATETABLE(TransactionHistory,TransactionHistory[Quantity] &gt;1)<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i2.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/Dax_Calculate.png?resize=680%2C69&amp;ssl=1\" alt=\"\" class=\"wp-image-5478\"\/><\/figure>\n\n\n\n<p>Once you commit DAX function, a table named as&nbsp;<strong>calctable<\/strong>&nbsp;is created in data model.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/calctable.png?resize=226%2C194&amp;ssl=1\" alt=\"\" class=\"wp-image-5479\"\/><\/figure>\n\n\n\n<p>This table is just a copy of actual table&nbsp;<strong>TransactionHistory<\/strong>&nbsp;but contains only those products for which a quantity value is greater than1.<\/p>\n\n\n\n<p>Lets drag a table fields into a table visual, and you can see all the products having a quantity greater than 1.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/calulatetbl.png?resize=421%2C237&amp;ssl=1\" alt=\"\" class=\"wp-image-5483\"\/><\/figure>\n\n\n\n<p>You can also compare both tables result sets, you can clearly see that&nbsp;<strong>calctable<\/strong>&nbsp;contains only those products for which quantity value is greater than 1.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i1.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/compare.png?resize=577%2C312&amp;ssl=1\" alt=\"\" class=\"wp-image-5484\"\/><\/figure>\n\n\n\n<p>So, using CALCULATETABLE function you can sort table records based on any specific condition.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">CALULATETABLE function with Summarize function<\/h4>\n\n\n\n<p>Lets modify the above DAX calculation and returns only specific columns&nbsp;<strong>ProductID<\/strong>,&nbsp;<strong>Quantity<\/strong>, and&nbsp;<strong>TransactionDate<\/strong>&nbsp;only.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">CalCtable =\nCALCULATETABLE (\nSUMMARIZE (\nTransactionHistory,\nTransactionHistory[ProductId],\nTransactionHistory[Quantity],\nTransactionHistory[TransactionDate]\n),\nTransactionHistory[Quantity] &gt; 1\n)<\/pre>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i2.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/cal.png?resize=598%2C248&amp;ssl=1\" alt=\"\" class=\"wp-image-5486\"\/><\/figure>\n\n\n\n<p>Once you commit the DAX, you will get only those columns that you want to see as shown in below screenshot.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i1.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/table.png?resize=187%2C376&amp;ssl=1\" alt=\"\" class=\"wp-image-5488\"\/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Using CALULATETABLE function within measures<\/h4>\n\n\n\n<p>You can also use CALCULATETABLE function within measure based on requirement so rather than creating a separate filtered table it can be used inside any measure.<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">SumofQuantity&gt;1 =\n\nSUMX(\nCALCULATETABLE (\nTransactionHistory,\nTransactionHistory[Quantity] &gt; 1\n),TransactionHistory[Quantity])<\/pre>\n\n\n\n<p>Now once you commit the DAX, and drag the measure into card visual.<\/p>\n\n\n\n<p>As you can see, it returns a total quantity sum of products for which quantity is greater than1 that is 21 as shown in below screenshot.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/i0.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/calulate5.png?resize=469%2C439&amp;ssl=1\" alt=\"\" class=\"wp-image-5492\"\/><figcaption>Ref: https:\/\/sqlskull.com\/2020\/06\/09\/calculatetable\/<\/figcaption><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>CALCULATETABLE function is a power bi filter function in DAX that evaluates a table expression in a context modified by the given filters. It returns a table of values. CALCULATETABLE(&lt;expression&gt;,&lt;filter1&gt;,&lt;filter2&gt;,\u2026) &lt;expression&gt; is a table expression to be evaluated. A measure can not be used as expression. &lt;filter1&gt;,&lt;filter2&gt;.. is a Boolean expression or a table expression <a class=\"read-more\" href=\"https:\/\/SUMMALAI.COM\/?p=3568\">Read More<\/a><\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"footnotes":""},"categories":[10,621],"tags":[847],"class_list":["post-3568","post","type-post","status-publish","format-standard","hentry","category-microsoft","category-power-bi","tag-calculatetable"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"CALCULATETABLE function is a power bi filter function in DAX that evaluates a table expression in a context modified by the given filters. It returns a table of values. CALCULATETABLE(,,,\u2026) is a table expression to be evaluated. A measure can not be used as expression. ,.. is a Boolean expression or a table expression\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Summa Lai\"\/>\n\t<meta name=\"keywords\" content=\"calculatetable,microsoft family,power bi\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/SUMMALAI.COM\/?p=3568\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#article\",\"name\":\"Power BI: CALCULATETABLE function DAX | Summa Lai\",\"headline\":\"Power BI: CALCULATETABLE function DAX\",\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/sqlskull.com\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/ds.png?resize=299%2C313&amp;ssl=1\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568\\\/#articleImage\"},\"datePublished\":\"2021-09-10T10:06:51-07:00\",\"dateModified\":\"2021-09-10T10:06:53-07:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#webpage\"},\"articleSection\":\"Microsoft Family, Power BI, CALCULATETABLE\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"position\":2,\"name\":\"Microsoft Family\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=621#listItem\",\"name\":\"Power BI\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=621#listItem\",\"position\":3,\"name\":\"Power BI\",\"item\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=621\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#listItem\",\"name\":\"Power BI: CALCULATETABLE function DAX\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=10#listItem\",\"name\":\"Microsoft Family\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#listItem\",\"position\":4,\"name\":\"Power BI: CALCULATETABLE function DAX\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?cat=621#listItem\",\"name\":\"Power BI\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\",\"name\":\"sladmin\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#personImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"sladmin\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2\",\"name\":\"Summa Lai\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#authorImage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/Summa_Logo-150x150.png\",\"width\":96,\"height\":96,\"caption\":\"Summa Lai\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#webpage\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568\",\"name\":\"Power BI: CALCULATETABLE function DAX | Summa Lai\",\"description\":\"CALCULATETABLE function is a power bi filter function in DAX that evaluates a table expression in a context modified by the given filters. It returns a table of values. CALCULATETABLE(,,,\\u2026) is a table expression to be evaluated. A measure can not be used as expression. ,.. is a Boolean expression or a table expression\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?p=3568#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/?author=2#author\"},\"datePublished\":\"2021-09-10T10:06:51-07:00\",\"dateModified\":\"2021-09-10T10:06:53-07:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#website\",\"url\":\"https:\\\/\\\/SUMMALAI.COM\\\/\",\"name\":\"Summa Lai\",\"description\":\"Never Stop Learning, Building a Little Wiki...\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/SUMMALAI.COM\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Power BI: CALCULATETABLE function DAX | Summa Lai","description":"CALCULATETABLE function is a power bi filter function in DAX that evaluates a table expression in a context modified by the given filters. It returns a table of values. CALCULATETABLE(,,,\u2026) is a table expression to be evaluated. A measure can not be used as expression. ,.. is a Boolean expression or a table expression","canonical_url":"https:\/\/SUMMALAI.COM\/?p=3568","robots":"max-image-preview:large","keywords":"calculatetable,microsoft family,power bi","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/SUMMALAI.COM\/?p=3568#article","name":"Power BI: CALCULATETABLE function DAX | Summa Lai","headline":"Power BI: CALCULATETABLE function DAX","author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/i0.wp.com\/sqlskull.com\/wp-content\/uploads\/2020\/06\/ds.png?resize=299%2C313&amp;ssl=1","@id":"https:\/\/SUMMALAI.COM\/?p=3568\/#articleImage"},"datePublished":"2021-09-10T10:06:51-07:00","dateModified":"2021-09-10T10:06:53-07:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/SUMMALAI.COM\/?p=3568#webpage"},"isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/?p=3568#webpage"},"articleSection":"Microsoft Family, Power BI, CALCULATETABLE"},{"@type":"BreadcrumbList","@id":"https:\/\/SUMMALAI.COM\/?p=3568#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","position":1,"name":"Home","item":"https:\/\/SUMMALAI.COM","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","position":2,"name":"Microsoft Family","item":"https:\/\/SUMMALAI.COM\/?cat=10","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=621#listItem","name":"Power BI"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=621#listItem","position":3,"name":"Power BI","item":"https:\/\/SUMMALAI.COM\/?cat=621","nextItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3568#listItem","name":"Power BI: CALCULATETABLE function DAX"},"previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=10#listItem","name":"Microsoft Family"}},{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?p=3568#listItem","position":4,"name":"Power BI: CALCULATETABLE function DAX","previousItem":{"@type":"ListItem","@id":"https:\/\/SUMMALAI.COM\/?cat=621#listItem","name":"Power BI"}}]},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/#person","name":"sladmin","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3568#personImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"sladmin"}},{"@type":"Person","@id":"https:\/\/SUMMALAI.COM\/?author=2#author","url":"https:\/\/SUMMALAI.COM\/?author=2","name":"Summa Lai","image":{"@type":"ImageObject","@id":"https:\/\/SUMMALAI.COM\/?p=3568#authorImage","url":"https:\/\/SUMMALAI.COM\/wp-content\/uploads\/2020\/05\/Summa_Logo-150x150.png","width":96,"height":96,"caption":"Summa Lai"}},{"@type":"WebPage","@id":"https:\/\/SUMMALAI.COM\/?p=3568#webpage","url":"https:\/\/SUMMALAI.COM\/?p=3568","name":"Power BI: CALCULATETABLE function DAX | Summa Lai","description":"CALCULATETABLE function is a power bi filter function in DAX that evaluates a table expression in a context modified by the given filters. It returns a table of values. CALCULATETABLE(,,,\u2026) is a table expression to be evaluated. A measure can not be used as expression. ,.. is a Boolean expression or a table expression","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/SUMMALAI.COM\/#website"},"breadcrumb":{"@id":"https:\/\/SUMMALAI.COM\/?p=3568#breadcrumblist"},"author":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"creator":{"@id":"https:\/\/SUMMALAI.COM\/?author=2#author"},"datePublished":"2021-09-10T10:06:51-07:00","dateModified":"2021-09-10T10:06:53-07:00"},{"@type":"WebSite","@id":"https:\/\/SUMMALAI.COM\/#website","url":"https:\/\/SUMMALAI.COM\/","name":"Summa Lai","description":"Never Stop Learning, Building a Little Wiki...","inLanguage":"en-US","publisher":{"@id":"https:\/\/SUMMALAI.COM\/#person"}}]}},"aioseo_meta_data":{"post_id":"3568","title":null,"description":null,"keywords":[],"keyphrases":{"focus":[],"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":{"id":"#aioseo-article-65a0cca40332f","slug":"article","graphName":"Article","label":"Article","properties":{"type":"BlogPosting","name":"#post_title","headline":"#post_title","description":"#post_excerpt","image":"","keywords":"","author":{"name":"#author_name","url":"#author_url"},"dates":{"include":true,"datePublished":"","dateModified":""}}},"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":"{\"article\":{\"articleType\":\"BlogPosting\"},\"course\":{\"name\":\"\",\"description\":\"\",\"provider\":\"\"},\"faq\":{\"pages\":[]},\"product\":{\"reviews\":[]},\"recipe\":{\"ingredients\":[],\"instructions\":[],\"keywords\":[]},\"software\":{\"reviews\":[],\"operatingSystems\":[]},\"webPage\":{\"webPageType\":\"WebPage\"}}","pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-09-10 17:03:28","updated":"2024-01-12 05:22:44","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=10\" title=\"Microsoft Family\">Microsoft Family<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/SUMMALAI.COM\/?cat=621\" title=\"Power BI\">Power BI<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tPower BI: CALCULATETABLE function DAX\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/SUMMALAI.COM"},{"label":"Microsoft Family","link":"https:\/\/SUMMALAI.COM\/?cat=10"},{"label":"Power BI","link":"https:\/\/SUMMALAI.COM\/?cat=621"},{"label":"Power BI: CALCULATETABLE function DAX","link":"https:\/\/SUMMALAI.COM\/?p=3568"}],"_links":{"self":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3568","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=3568"}],"version-history":[{"count":1,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3568\/revisions"}],"predecessor-version":[{"id":3569,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=\/wp\/v2\/posts\/3568\/revisions\/3569"}],"wp:attachment":[{"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3568"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3568"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/SUMMALAI.COM\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3568"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}