{"id":1752,"date":"2021-01-11T08:00:00","date_gmt":"2021-01-11T05:00:00","guid":{"rendered":"https:\/\/www.dataplatform.gr\/?p=1752"},"modified":"2024-09-11T21:34:18","modified_gmt":"2024-09-11T18:34:18","slug":"ti-diafores-echei-i-mdx-me-tin-dax","status":"publish","type":"post","link":"https:\/\/www.dataplatform.gr\/en\/ti-diaphores-echei-i-mdx-me-tin-dax\/","title":{"rendered":"What are the differences between MDX and DAX queries?"},"content":{"rendered":"<p>They are both expression languages used for data analysis in Power BI, Excel and Analysis Services.<\/p>\n\n\n\n<p>If we would like to give an answer to our question with a sentence, h <strong>MDX (<em>Multidimensional Expressions<\/em>)<\/strong> you use to analyze multidimensional cubes while h <strong>DAX (Data Analysis Expressions) <\/strong>use to analyze tabular models in one <strong>Data Warehouse<\/strong>. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Their differences in detail<\/h2>\n\n\n\n<p>THE <strong>DAX<\/strong> in filtering and aggregation (SUM, COUNT, MAX, etc.) it reminds the logic of SQL. Also in the expressions they are compiled similarly to Excel (e.g. <em>SUM(&#039;Internet Sales&#039;[Sales Amount])<\/em>). Allows use  <strong>DirectQuery<\/strong> to access hot data. It performs better than <strong>MDX<\/strong>. It does not support the concept of calculated members and named sets provided by <strong>MDX<\/strong>.<\/p>\n\n\n\n<p>On the other hand, <strong>MDX<\/strong> uses the dimensions of the multidimensional cube in axes (up to 128) to display the data. It is easier to write. Needed to extract data for data mining.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Example in their different syntax<\/h2>\n\n\n\n<p>Let&#039;s say we want to pivot with internet sales for the year 2019 and 2020 like below.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"963\" height=\"170\" src=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/1-mdax.png\" alt=\"\" class=\"wp-image-1765\" srcset=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/1-mdax.png 963w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/1-mdax-300x53.png 300w, https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/1-mdax-768x136.png 768w\" sizes=\"auto, (max-width: 963px) 100vw, 963px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">MDX<\/h4>\n\n\n\n<p>Using <strong>MDX<\/strong> we should declare on each axis the information we want to see. In this example, we want to see &quot;Sales&quot; on the first axis and on the second axis for the years 2019 and 2020.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">SELECT\n\n{ [Measures].[internet Sales Amount] } ON AXIS (0),\n{ [Date].[Calendar Year].[2019],\n[Date]. [Calendar Year].[2020] } ON AXIS (1)\n\nFROM\n[Adventure Works]<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">DAX<\/h4>\n\n\n\n<p>Using <strong>DAX<\/strong>  one should be created <strong>Measure<\/strong> (measurement) by using it<strong> Aggregate Function \u201cSUM\u201d<\/strong> so that we pivot to the year 2019 and 2020.<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"sql\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\" data-no-translation=\"\" data-no-auto-translation=\"\">DEFINE\nMEASURE 'Internet Sales'[internet Sales Amount] = SUM('Internet Sales'[Sales Amount])\nEVALUATE\nSUMMARIZECOLUMNS\n(\n    'Date'[Calendar Year],\n    TREATAS({2019, 2020}, 'Date'[Calendar Year]),\n    \"Internet Sales\", [internet Sales Amount],\nALLSELECTED('Date'[Calendar Year]))\n)\nORDER BY [Calendar Year]<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Which one is better?<\/h2>\n\n\n\n<p>Of course there is no answer to this question.<\/p>\n\n\n\n<p>Depending on the use we want to make we also choose the language, for data in a database we will use SQL, for data in a multidimensional cube MDX and for a PowerPivot \/ Tabular DAX models.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Sources:<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a aria-label=\"undefined (opens in a new tab)\" href=\"https:\/\/docs.microsoft.com\/en-us\/dax\/dax-queries\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft DAX queries<\/a><\/li>\n\n\n\n<li><a aria-label=\"undefined (opens in a new tab)\" href=\"https:\/\/docs.microsoft.com\/en-us\/analysis-services\/multidimensional-models\/mdx\/mdx-query-the-basic-query?view=asallproducts-allversions\" target=\"_blank\" rel=\"noreferrer noopener\">Microsoft MDX queries<\/a><\/li>\n<\/ul>","protected":false},"excerpt":{"rendered":"<p>They are both expression languages used for data analysis in Power BI, Excel and Analysis Services. If we would like to answer our question with a sentence, MDX (Multidimensional Expressions) is used for multidimensional cube analysis while DAX (Data Analysis Expressions) is used for tabular model analysis in a Data Warehouse. [\u2026]<\/p>","protected":false},"author":1,"featured_media":1722,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12,19,15],"tags":[24,133,87,88,23,6],"class_list":["post-1752","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-business-intelligence","category-datawarehouse","category-ms-sqlserver","tag-data-analysis","tag-data-warehouse","tag-dax","tag-mdx","tag-microsoft","tag-sqlserver"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries - DataPlatform.gr<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.dataplatform.gr\/en\/ti-diaphores-echei-i-mdx-me-tin-dax\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries - DataPlatform.gr\" \/>\n<meta property=\"og:description\" content=\"\u0395\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03bf\u03b9 \u03b4\u03cd\u03bf \u03b3\u03bb\u03ce\u03c3\u03c3\u03b5\u03c2 expression \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf Power BI, Excel \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 Analysis Services. \u0391\u03bd \u03b8\u03b1 \u03b8\u03ad\u03bb\u03b1\u03bc\u03b5 \u03bd\u03b1 \u03b4\u03ce\u03c3\u03bf\u03c5\u03bc\u03b5 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf \u03b5\u03c1\u03ce\u03c4\u03b7\u03bc\u03b1 \u03bc\u03b1\u03c2 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03c1\u03cc\u03c4\u03b1\u03c3\u03b7, \u03b7 MDX (Multidimensional Expressions) \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 \u03c0\u03bf\u03bb\u03c5\u03b4\u03b9\u03ac\u03c3\u03c4\u03b1\u03c4\u03c9\u03bd \u03ba\u03cd\u03b2\u03c9\u03bd \u03b5\u03bd\u03ce \u03b7 DAX (Data Analysis Expressions) \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 tabular \u03bc\u03bf\u03bd\u03c4\u03ad\u03bb\u03c9\u03bd \u03c3\u03b5 \u03ad\u03bd\u03b1 Data Warehouse. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.dataplatform.gr\/en\/ti-diaphores-echei-i-mdx-me-tin-dax\/\" \/>\n<meta property=\"og:site_name\" content=\"DataPlatform.gr\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/dataplatform.gr\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-11T05:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-11T18:34:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/dp_dw_MS.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Stratos Matzouranis\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Stratos Matzouranis\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/\"},\"author\":{\"name\":\"Stratos Matzouranis\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\"},\"headline\":\"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries\",\"datePublished\":\"2021-01-11T05:00:00+00:00\",\"dateModified\":\"2024-09-11T18:34:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/\"},\"wordCount\":65,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/dp_dw_MS.png\",\"keywords\":[\"Data Analysis\",\"Data Warehouse\",\"DAX\",\"MDX\",\"Microsoft\",\"SQL Server\"],\"articleSection\":[\"Business Intelligence\",\"Data Warehouse\",\"Microsoft SQL Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/\",\"name\":\"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries - DataPlatform.gr\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/dp_dw_MS.png\",\"datePublished\":\"2021-01-11T05:00:00+00:00\",\"dateModified\":\"2024-09-11T18:34:18+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/dp_dw_MS.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/07\\\/dp_dw_MS.png\",\"width\":1280,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/ti-diafores-echei-i-mdx-me-tin-dax\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Business Intelligence\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/business-intelligence\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Data Warehouse\",\"item\":\"https:\\\/\\\/www.dataplatform.gr\\\/category\\\/business-intelligence\\\/datawarehouse\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#website\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"name\":\"dataplatform.gr - Sky is not the limit!\",\"description\":\"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.dataplatform.gr\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#organization\",\"name\":\"dataplatform.gr\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"contentUrl\":\"https:\\\/\\\/www.dataplatform.gr\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/dp_logo_wbacki.png\",\"width\":322,\"height\":139,\"caption\":\"dataplatform.gr\"},\"image\":{\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/dataplatform.gr\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/dataplatform-gr\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.dataplatform.gr\\\/#\\\/schema\\\/person\\\/e87bf4fd02b65cb6aa0942f87245bbaf\",\"name\":\"Stratos Matzouranis\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g\",\"caption\":\"Stratos Matzouranis\"},\"sameAs\":[\"https:\\\/\\\/www.dataplatform.gr\"],\"url\":\"https:\\\/\\\/www.dataplatform.gr\\\/en\\\/author\\\/stratos-matzouranis\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries - DataPlatform.gr","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.dataplatform.gr\/en\/ti-diaphores-echei-i-mdx-me-tin-dax\/","og_locale":"en_US","og_type":"article","og_title":"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries - DataPlatform.gr","og_description":"\u0395\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03bf\u03b9 \u03b4\u03cd\u03bf \u03b3\u03bb\u03ce\u03c3\u03c3\u03b5\u03c2 expression \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf Power BI, Excel \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 Analysis Services. \u0391\u03bd \u03b8\u03b1 \u03b8\u03ad\u03bb\u03b1\u03bc\u03b5 \u03bd\u03b1 \u03b4\u03ce\u03c3\u03bf\u03c5\u03bc\u03b5 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf \u03b5\u03c1\u03ce\u03c4\u03b7\u03bc\u03b1 \u03bc\u03b1\u03c2 \u03bc\u03b5 \u03bc\u03b9\u03b1 \u03c0\u03c1\u03cc\u03c4\u03b1\u03c3\u03b7, \u03b7 MDX (Multidimensional Expressions) \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 \u03c0\u03bf\u03bb\u03c5\u03b4\u03b9\u03ac\u03c3\u03c4\u03b1\u03c4\u03c9\u03bd \u03ba\u03cd\u03b2\u03c9\u03bd \u03b5\u03bd\u03ce \u03b7 DAX (Data Analysis Expressions) \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03bb\u03c5\u03c3\u03b7 tabular \u03bc\u03bf\u03bd\u03c4\u03ad\u03bb\u03c9\u03bd \u03c3\u03b5 \u03ad\u03bd\u03b1 Data Warehouse. [&hellip;]","og_url":"https:\/\/www.dataplatform.gr\/en\/ti-diaphores-echei-i-mdx-me-tin-dax\/","og_site_name":"DataPlatform.gr","article_publisher":"https:\/\/www.facebook.com\/dataplatform.gr\/","article_published_time":"2021-01-11T05:00:00+00:00","article_modified_time":"2024-09-11T18:34:18+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/dp_dw_MS.png","type":"image\/png"}],"author":"Stratos Matzouranis","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Stratos Matzouranis","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#article","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/"},"author":{"name":"Stratos Matzouranis","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf"},"headline":"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries","datePublished":"2021-01-11T05:00:00+00:00","dateModified":"2024-09-11T18:34:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/"},"wordCount":65,"commentCount":0,"publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"image":{"@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/dp_dw_MS.png","keywords":["Data Analysis","Data Warehouse","DAX","MDX","Microsoft","SQL Server"],"articleSection":["Business Intelligence","Data Warehouse","Microsoft SQL Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/","url":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/","name":"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries - DataPlatform.gr","isPartOf":{"@id":"https:\/\/www.dataplatform.gr\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#primaryimage"},"image":{"@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#primaryimage"},"thumbnailUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/dp_dw_MS.png","datePublished":"2021-01-11T05:00:00+00:00","dateModified":"2024-09-11T18:34:18+00:00","breadcrumb":{"@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#primaryimage","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/dp_dw_MS.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/07\/dp_dw_MS.png","width":1280,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/www.dataplatform.gr\/ti-diafores-echei-i-mdx-me-tin-dax\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u0391\u03c1\u03c7\u03b9\u03ba\u03ae","item":"https:\/\/www.dataplatform.gr\/"},{"@type":"ListItem","position":2,"name":"Business Intelligence","item":"https:\/\/www.dataplatform.gr\/category\/business-intelligence\/"},{"@type":"ListItem","position":3,"name":"Data Warehouse","item":"https:\/\/www.dataplatform.gr\/category\/business-intelligence\/datawarehouse\/"},{"@type":"ListItem","position":4,"name":"\u03a4\u03b9 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b1 MDX \u03bc\u03b5 \u03c4\u03b1 DAX queries"}]},{"@type":"WebSite","@id":"https:\/\/www.dataplatform.gr\/#website","url":"https:\/\/www.dataplatform.gr\/","name":"dataplatform.gr - Sky is not the limit!","description":"\u0398\u03b5\u03c9\u03c1\u03af\u03b1, \u03bf\u03b4\u03b7\u03b3\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03ba\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03c4\u03b7 \u03b4\u03bf\u03c5\u03bb\u03b5\u03b9\u03ac \u03c3\u03b1\u03c2 \u03c0\u03b9\u03bf \u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03b9\u03ba\u03ac \u03ba\u03b1\u03b9 \u03c0\u03b9\u03bf \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03c0\u03ac\u03bd\u03c9 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03ac\u03c3\u03b5\u03b9\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03c3\u03c4\u03b7\u03bd SQL, \u03c3\u03c4\u03bf Business Intelligence \u03ba\u03b1\u03b9 \u03c3\u03c4\u03b1 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b3\u03b5\u03bd\u03b9\u03ba\u03cc\u03c4\u03b5\u03c1\u03b1.","publisher":{"@id":"https:\/\/www.dataplatform.gr\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.dataplatform.gr\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.dataplatform.gr\/#organization","name":"dataplatform.gr","url":"https:\/\/www.dataplatform.gr\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/","url":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","contentUrl":"https:\/\/www.dataplatform.gr\/wp-content\/uploads\/2020\/06\/dp_logo_wbacki.png","width":322,"height":139,"caption":"dataplatform.gr"},"image":{"@id":"https:\/\/www.dataplatform.gr\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/dataplatform.gr\/","https:\/\/www.linkedin.com\/company\/dataplatform-gr\/"]},{"@type":"Person","@id":"https:\/\/www.dataplatform.gr\/#\/schema\/person\/e87bf4fd02b65cb6aa0942f87245bbaf","name":"Stratos Matzouranis","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ab973bc4bd1673c43d45de5633a624d9ad13c06902dfdd5a6e3fd9885903865e?s=96&d=mm&r=g","caption":"Stratos Matzouranis"},"sameAs":["https:\/\/www.dataplatform.gr"],"url":"https:\/\/www.dataplatform.gr\/en\/author\/stratos-matzouranis\/"}]}},"_links":{"self":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/1752","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/comments?post=1752"}],"version-history":[{"count":1,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/1752\/revisions"}],"predecessor-version":[{"id":5816,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/posts\/1752\/revisions\/5816"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media\/1722"}],"wp:attachment":[{"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/media?parent=1752"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/categories?post=1752"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.dataplatform.gr\/en\/wp-json\/wp\/v2\/tags?post=1752"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}