<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Calculated measures analysis cube in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Calculated-measures-analysis-cube/m-p/358639#M704650</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem regarding measures in an analysis cube. I made connection to an analysis cube using: Microsoflt OLE DB Provider for OLAP services 8.0 or Microsoft OLE DB Provider for analysis services 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both establish connection to the cube and give the possibility to load the data, which works fine. However the calculated measures in the cube are not shown and can not be loaded by QlikView. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know a connector that does see the calculated measures? Or has another answer to this question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2012 08:00:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-06-19T08:00:21Z</dc:date>
    <item>
      <title>Calculated measures analysis cube</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-measures-analysis-cube/m-p/358639#M704650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem regarding measures in an analysis cube. I made connection to an analysis cube using: Microsoflt OLE DB Provider for OLAP services 8.0 or Microsoft OLE DB Provider for analysis services 10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both establish connection to the cube and give the possibility to load the data, which works fine. However the calculated measures in the cube are not shown and can not be loaded by QlikView. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone know a connector that does see the calculated measures? Or has another answer to this question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2012 08:00:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-measures-analysis-cube/m-p/358639#M704650</guid>
      <dc:creator />
      <dc:date>2012-06-19T08:00:21Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated measures analysis cube</title>
      <link>https://community.qlik.com/t5/QlikView/Calculated-measures-analysis-cube/m-p/358640#M704651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;There is no direct support for building or executing MDX-queries in QlikView. The following MDX-query (for the demo-database included with SQL 2005) will not work if you cut-and-paste it into QlikView: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;SELECT { [Measures].[Sales Amount], [Measures].[Tax Amount] } ON COLUMNS, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;{ [Date].[Fiscal].[Fiscal Year].&amp;amp;[2002], [Date].[Fiscal].[Fiscal Year].&amp;amp;[2003] } ON ROWS &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;FROM [Adventure Works] &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;WHERE ( [Sales Territory].[Southwest] ) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;However, by using openrowset() in SQL, it is possible to encapsulate the MDX-query in a standard SELECT statement. In this example Microsoft OLEDB for Olap Services is used to query Analyis Services: &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;SQL SELECT * FROM &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;openrowset('MSOLAP.3','DATA SOURCE=localhost;Initial Catalog=Adventure Works DW', &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;'SELECT { [Measures].[Sales Amount], [Measures].[Tax Amount] } ON COLUMNS, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;{ [Date].[Fiscal].[Fiscal Year].&amp;amp;[2002], [Date].[Fiscal].[Fiscal Year].&amp;amp;[2003] } ON ROWS &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;FROM [Adventure Works] WHERE ( [Sales Territory].[Southwest] )') &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Arial, Helvetica, sans-serif; font-size: 11px; background-color: #ffffff;"&gt;Note: Support for openrowset is disabled by default in SQL 2005 Server.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jul 2012 13:19:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Calculated-measures-analysis-cube/m-p/358640#M704651</guid>
      <dc:creator>ToniKautto</dc:creator>
      <dc:date>2012-07-03T13:19:01Z</dc:date>
    </item>
  </channel>
</rss>

