<?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 Re: Qlik Server vs Desktop in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754262#M268685</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You know, maybe I over thought this whole thing.&amp;nbsp; I pull all the dates into another table called "Date Link" and then this sub routine was used so that I could generate this table called "Common Calendar" but TBH I really do not understand exactly what it does.&amp;nbsp; Now I am thinking I could get away with the following.&amp;nbsp; Just adding Year(Date) as Year and then Month(Date) as Month seems to give me the exact same results...All of the dates are pulled into the date link and at least I understand what this is doing....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It still does not explain what is the difference between the server side and the client side but I have a meeting scheduled with the qlik admin on Monday and if we can isolate the issue I will post the resolution on here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Segment, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DateType,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Date) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date) as Month&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Datelink.qvd&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Mar 2015 12:45:02 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-03-20T12:45:02Z</dc:date>
    <item>
      <title>Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754253#M268676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Question - We have a qlikview server in Germany that another team manages.&amp;nbsp; I developed a dashboard on my local computer and sent them the qvw and qvd files to upload which they have done many times for me before without any hitches.&amp;nbsp; This time my dashboard was a little more complex and had the below routine to generate a calendar and then another line to create a common calendar.&amp;nbsp; This worked with no issues on my local copy but the published version shows no results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone have any ideas why it would be different on the server vs a local version of qlik?&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//===================================================&lt;/P&gt;&lt;P&gt;// Subroutine to Generate Calendar. &lt;/P&gt;&lt;P&gt;//===================================================&lt;/P&gt;&lt;P&gt;SUB CalendarFromField(_field, _calendar, _prefix)&lt;/P&gt;&lt;P&gt;[$(_calendar)]:&lt;/P&gt;&lt;P&gt;// Generate Final Calendar&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; [$(_field)]&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,year([$(_field)]) as [$(_prefix)Year]&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,month([$(_field)]) as [$(_prefix)Month]&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,day([$(_field)]) as [$(_prefix)Day]&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,weekday([$(_field)]) as [$(_prefix)Weekday]&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;// Generate range of dates between min and max.&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; date(DateMin + IterNo()) as [$(_field)] // Link Field&lt;/P&gt;&lt;P&gt;WHILE DateMin + IterNo() &amp;lt;= DateMax&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;// Find min and max of date field values.&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; min(datefield)-1 as DateMin&lt;/P&gt;&lt;P&gt;&amp;nbsp; ,max(datefield) as DateMax&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;// Load date field values.&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; FieldValue('$(_field)', RecNo()) as datefield&lt;/P&gt;&lt;P&gt;AutoGenerate FieldValueCount('$(_field)');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END SUB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then CALL CalendarFromField('Date', 'CommonCalendar', '');&amp;nbsp; to generate the the actual "Common calendar"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 15:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754253#M268676</guid>
      <dc:creator />
      <dc:date>2015-03-19T15:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754254#M268677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;but the published version shows no results.&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Perhaps the previous version is still loaded in memory? Did you reload the document?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 17:28:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754254#M268677</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-19T17:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754255#M268678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I did reload the document once published to the server.&amp;nbsp; If you go to the table view and look at the common calendar table it shows no data on the server except the date field in mm/yyyy format but on the local copy it does separate the mm/yyyy into Month names and year numbers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 19:42:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754255#M268678</guid>
      <dc:creator />
      <dc:date>2015-03-19T19:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754256#M268679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just to be sure, do your two copies load from exactly the same source files and tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 08:37:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754256#M268679</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-20T08:37:06Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754257#M268680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes they both load from the same source.&amp;nbsp; They both pull the dates into the date MM/YYYY format but on the server the script above seems to not strip the month numbers out as month names and the years do not populate either.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:11:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754257#M268680</guid>
      <dc:creator />
      <dc:date>2015-03-20T12:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754258#M268681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Servers and Desktop/Laptop machines may have different system settings to represent date &amp;amp; time values. In a QlikView script, both are usually set to a fixed value. Is that also the case in the two environments? Are there anyconflicts between date/time values you get from the OS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:23:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754258#M268681</guid>
      <dc:creator>Peter_Cammaert</dc:creator>
      <dc:date>2015-03-20T12:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754259#M268682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does the document use any include statements for script code that is loaded from external files? The subroutine you posted looks like part of the Qlikview Components library. If code is loaded with include statements can these files be found in the same place on the server as on your local computer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are the MM/YYYY dates real dates in both documents? Or does the server copy contain text values in that field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754259#M268682</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-20T12:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754260#M268683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I am still a newbie to Qlik, I am getting better but still a newb.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the Server these are the set functions that I thought drove that stuff.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let project = 'IT_Segment';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='M/D/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then on the client side it looks like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET ThousandSep=',';&lt;/P&gt;&lt;P&gt;SET DecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyThousandSep=',';&lt;/P&gt;&lt;P&gt;SET MoneyDecimalSep='.';&lt;/P&gt;&lt;P&gt;SET MoneyFormat='$#,##0.00;($#,##0.00)';&lt;/P&gt;&lt;P&gt;SET TimeFormat='h:mm:ss TT';&lt;/P&gt;&lt;P&gt;SET DateFormat='M/D/YYYY';&lt;/P&gt;&lt;P&gt;SET TimestampFormat='M/D/YYYY h:mm:ss[.fff] TT';&lt;/P&gt;&lt;P&gt;SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;/P&gt;&lt;P&gt;SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both are the same except for the "let project" statement.&amp;nbsp; Other than that the only difference to date and time looks to be the time zone.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:31:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754260#M268683</guid>
      <dc:creator />
      <dc:date>2015-03-20T12:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754261#M268684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No I do not have any include statements in either document.&amp;nbsp; I got that subroutine from a qlikview post talking about conical dates and it helped me create that common calendar.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes both dates are real, they are gathered from about 6 different tables..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:34:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754261#M268684</guid>
      <dc:creator />
      <dc:date>2015-03-20T12:34:17Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754262#M268685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You know, maybe I over thought this whole thing.&amp;nbsp; I pull all the dates into another table called "Date Link" and then this sub routine was used so that I could generate this table called "Common Calendar" but TBH I really do not understand exactly what it does.&amp;nbsp; Now I am thinking I could get away with the following.&amp;nbsp; Just adding Year(Date) as Year and then Month(Date) as Month seems to give me the exact same results...All of the dates are pulled into the date link and at least I understand what this is doing....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It still does not explain what is the difference between the server side and the client side but I have a meeting scheduled with the qlik admin on Monday and if we can isolate the issue I will post the resolution on here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD Segment, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DateType,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Year(Date) as Year,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date) as Month&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Datelink.qvd&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:45:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754262#M268685</guid>
      <dc:creator />
      <dc:date>2015-03-20T12:45:02Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754263#M268686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's the first time that you user VBA Macros in Qlikview? Did you allow macro execution on the server?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:51:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754263#M268686</guid>
      <dc:creator />
      <dc:date>2015-03-20T12:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754264#M268687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could it be that the date formats differ between the Local PC and The Germany based server:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;&lt;STRONG&gt;SET&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;ThousandSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=',';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;DecimalSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='.';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;MoneyThousandSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;=',';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;MoneyDecimalSep&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='.';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;MoneyFormat&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='£#,##0;-£#,##0';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;TimeFormat&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='hh:mm:ss';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;DateFormat&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='DD/MM/YYYY';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;TimestampFormat&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='DD/MM/YYYY hh:mm:ss[.fff]';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;MonthNames&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;DayNames&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;='Mon;Tue;Wed;Thu;Fri;Sat;Sun'; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:51:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754264#M268687</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-03-20T12:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754265#M268688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok so again I am a newb here.&amp;nbsp; Is that subroutine a VBA script?&amp;nbsp; Either way I do not know if macro execution is allowed on the server but that is a good idea.&amp;nbsp; I will make sure to ask that on Monday.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:55:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754265#M268688</guid>
      <dc:creator />
      <dc:date>2015-03-20T12:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754266#M268689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I looked at the time settings on the server and compared them to my PC, they are exactly the same for the the time zone, I am UTC -5 or something and they are UTC -1 or something like that but dates are displayed in the same format.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:56:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754266#M268689</guid>
      <dc:creator />
      <dc:date>2015-03-20T12:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754267#M268690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What the subroutine does it create a calendar table with all the dates spanning the interval between the minimum and maximum date in your Datelink.qvd file. That calendar table will have no gaps. Your source data could have missing dates, i.e. gaps in the calendar. But if you know that there are no gaps then you might as well use the Month() and Year() functions directly as you posted above.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 12:58:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754267#M268690</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-20T12:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754268#M268691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ask for your Server Administrador to look for Server Settings in the QMC (Management Console). There are items to configure macro execution on there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look this picture&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe that is under QMC -&amp;gt; System -&amp;gt; Servers -&amp;gt; QVS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good luck&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="server.png" class="jive-image jive-image-thumbnail" height="66" src="https://community.qlik.com/legacyfs/online/81399_server.png" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 13:09:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754268#M268691</guid>
      <dc:creator />
      <dc:date>2015-03-20T13:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Server vs Desktop</title>
      <link>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754269#M268692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The subroutine he posted is not macro code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Mar 2015 13:13:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Qlik-Server-vs-Desktop/m-p/754269#M268692</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-03-20T13:13:02Z</dc:date>
    </item>
  </channel>
</rss>

