qlikview

Qlikview REST connector pagination namespaced XML

牧云@^-^@ 提交于 2019-12-11 09:58:50
问题 We have a XML file that is on somewebsite and looks in a way like this (confidential parts stripped) <?xml version="1.0" encoding="utf-8" standalone="yes"?> <feed xml:base="https://somewebsite.com/crm/" xmlns:d="http://schemas.microsoft.com/ado/2007/08/dataservices" xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata" xmlns="http://www.w3.org/2005/Atom"> <title type="text">Accounts</title> <id></id> <updated>2016-02-04T08:36:56Z</updated> <link rel="self" title="Accounts"

Venn Diagram in QlikView to display relationship for product mixed

混江龙づ霸主 提交于 2019-12-11 08:09:34
问题 Currently I am trying to use qlikview to do Market Basket analysis to find out the best product mixed . and I have tried [ http://www.quickqlearqool.nl/?p=965 ] How can I improve this dashboard to add in a Venn digram to show the relationships for the product combination [count the number of Customer who buy milk will buy Bread within a certain duration]. The following dropBox link is a sample datasets with the Venn Diagram : [ https://www.dropbox.com/s/s2z2ikgyr436gxm

Qlikview and Qliksense VS MSBI

橙三吉。 提交于 2019-12-11 01:38:47
问题 This question can be seen as very stupid, but i'm actually strugling to make it clear into my head. I have some academic experience with SSIS, SSAS and SSRS. In simple terms: SSIS - Integration of data from a data source to a data destination; SSAS - Building a cube of data, which allows to analize and discover the data. SSRS - Allows the data source to create dashboards with charts, etc... Now, doing a comparison with Qlikview and Qliksense... Can the Qlik products do exactly the same as

QlikView - Use a variable into set analysis expression

妖精的绣舞 提交于 2019-12-10 20:49:10
问题 I've the variable varCurrentYear varCurrentYear = Year(Today()) And I wrote this set analysis expression The result it’s not correct. By the way If the variable is declared in this way varCurrentYear = 2014 The result is correct. Why? Thank's 回答1: I'd use Sum({$<Year={'$(varCurrentYear)'}>}Orders) resp without quotes if varCurrentYear is numeric Sum({$<Year={$(varCurrentYear)}>}Orders) See http://tools.qlikblog.at/SetAnalysisWizard/?sa=MCKA Regards Stefan 回答2: I know it looks strange, but you

Qlikview aggration with conditions

懵懂的女人 提交于 2019-12-08 12:24:38
问题 I have some data like below - id, fn, ln, logdate 1, Rob, Hep, 01-04-2010 2, Rob, Hep, 09-04-2010 3, Rob, Hep, 10-10-2012 4, Rob, Hep, 01-12-2009 5, Peter, Cheng, 02-10-2010 6, bob, Pen, 05-10-2009 7, Peter, Cheng, 01-10-2009 8, Kim, Rany, 08-01-2010 I will have to write an expression Group the above data by fn+ln. From the Group get the record of min(logdate) For each min logdate from above, find count if the date is above '01-01-2010' So in this example - I should get count as one. (Rob Hep

Resources for learning Qlik Sense

99封情书 提交于 2019-12-08 07:07:04
问题 I am learning a qlik sense tool. I googled about this to learn or understand its controls/widgets, but didn't find much resources and explanations. The only one website where I found example code is https://help.qlik.com/en-US/sense-developer/2.1/Subsystems/Platform/Content/qlik-sense-platform.htm May somebody suggest other resources with example code? Is there any book with understandable examples? 回答1: Have you tried their YouTube channel? Qlik Qlik Sense is a relatively young product that

Tool Recommendation to create Interaction Map with multiple dimensions

為{幸葍}努か 提交于 2019-12-07 23:16:17
问题 I have knowledge in QLik/Sense, Big Query, Google Data Studio ( and related ) I need to create a map with multiple points and each point will display data from the database (point related) The table will look for example like this: +------------+---------------------------+-----------+---------+-------+ | Store Name | Store Location (Long/Lat) | Product | Ordered | Sold | +============+===========================+===========+=========+=======+ | Store 1 | XXX,XXX | Product 1 | True | False |

Tool Recommendation to create Interaction Map with multiple dimensions

不羁的心 提交于 2019-12-06 08:46:04
I have knowledge in QLik/Sense, Big Query, Google Data Studio ( and related ) I need to create a map with multiple points and each point will display data from the database (point related) The table will look for example like this: +------------+---------------------------+-----------+---------+-------+ | Store Name | Store Location (Long/Lat) | Product | Ordered | Sold | +============+===========================+===========+=========+=======+ | Store 1 | XXX,XXX | Product 1 | True | False | +------------+---------------------------+-----------+---------+-------+ | Store 2 | YYY,YYY | Product

PHP PDO ODBC connection

烈酒焚心 提交于 2019-12-06 03:58:38
问题 we are trying to create a connection with our SQL database trough ODBC in PHP. This is our current script: $cnx = new PDO("odbc:Driver={EFR};Server=localhost;Port:7004;Database=EFR;Uid=LcLfVJFLTKTCEHRO;Pwd=*********;"); The driver is working in Qlikview which also connects to this database. The driver is actually being found by PHP, but we think it just can't login. PHP is returning the following error: Fatal error: Uncaught exception 'PDOException' with message 'SQLSTATE[IM001]

QlikView 中如何给Current Selections排序

谁说胖子不能爱 提交于 2019-12-05 02:54:09
步骤:   1、在所有脚本开始的位置创建一个INLINE Table,将所有想要排序的字段放到这个表中, 如果有字段中包含空格,可以使用''将字段包裹起来   2、在所有脚本的最后将这个INLINE Table删除掉 具体示例如下: 来源: https://www.cnblogs.com/rui-yang/p/11899748.html