<?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 User-specific date format in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144280#M505808</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Michael Solomovich wrote:If you look up the thread you'll find almost exactly this&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;No, I believe I am suggesting something different. Rakesh suggested using the QV GetRegistryString() function in a variable expression.&lt;/P&gt;&lt;P&gt;I'm suggesting using the QV GetRegistryString() function in the &lt;STRONG&gt;OnOpen macro VBSCript&lt;/STRONG&gt;. You should then be executing in the user's machine -- just like your other example. Except without System Access required.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 16 May 2009 03:33:12 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2009-05-16T03:33:12Z</dc:date>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144265#M505793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Forum,&lt;/P&gt;&lt;P&gt;Here is a problem. Client has users in multiple countries who are using the same QVS-based application. Date format is different from country to country, for example DD/MM/YY in Europe, and MM/DD/YY in US. They want to be able to see the data in their respective format.&lt;/P&gt;&lt;P&gt;Is there a reliable way to implement this? Appreciate any ideas, especially the crazy once - they help to think.&lt;I&gt;&lt;/I&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I've implemented a clumsy solution based on time functions that worked OK in QVS 8.01, but behaves rather erratic in QVS 8.50. I reported a bug to QlikTech.)&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 07:34:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144265#M505793</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-15T07:34:56Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144266#M505794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about having a variable at runtime (Settings -&amp;gt; Variable Overview), say vLang, and setting it to:&lt;/P&gt;&lt;P&gt;=getregistrystring('HKEY_CURRENT_USER\Control Panel\International', 'sShortDate')&lt;/P&gt;&lt;P&gt;This would give you the date format of the user in the vLang variable. Then use this variable in charts and everywhere to format the date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 10:41:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144266#M505794</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-05-15T10:41:59Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144267#M505795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rakesh,&lt;BR /&gt;Thank you for the idea. On the local machine it is more elegant than my current solution. The problem is that it doesn't work for server-based apps. User gets registry info from the server, no matter what is on the user machine. The is, if the serever date format is MM/DD/YY, and user setting is DD/MM/YY, yser gets MM/DD/YY.&lt;BR /&gt;(I tested with QVS 8.50 and 8.01)&lt;BR /&gt;But your idea may help to find a working solution. I'm going to try around it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 19:35:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144267#M505795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-15T19:35:50Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144268#M505796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a solution. The important part is the Date Format variable must be assigned on open, that means the expression cannot be used in the variable definition. I'm going to use this macro:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;sub OnOpen&lt;BR /&gt; ...&lt;BR /&gt; DateFormat&lt;BR /&gt; ActiveDocument.GetApplication.WaitForIdle&lt;BR /&gt; ...&lt;BR /&gt;end sub&lt;BR /&gt;private sub DateFormat&lt;BR /&gt; df = ActiveDocument.Evaluate("=upper(getregistrystring('HKEY_CURRENT_USER\Control Panel\International', 'sShortDate'))")&lt;BR /&gt; ActiveDocument.Variables("vDF").SetContent df, true&lt;BR /&gt;end sub&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Thanks a lot Rakesh!&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 19:58:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144268#M505796</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-15T19:58:52Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144269#M505797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael, That's pretty smart.&lt;/P&gt;&lt;P&gt;Somehow, I have feeling that the variable solution also should work on Server &amp;amp; IE combination of application. that's is why I was checking the user specific keys and not the system default one. But to be honest, I have never tried it myself. Anyway, we know hoe to handle it now.&lt;/P&gt;&lt;P&gt;Thanks for posting the final solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 20:07:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144269#M505797</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-05-15T20:07:55Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144270#M505798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rakesh,&lt;BR /&gt;Sorry to dissapoint, but it didn't work anyway. I apparently missed something in my testing, likely was opening a local copy of the file instead of server-based.&lt;BR /&gt;It consistenly reads info from the server registry. Even if I run the above "DateFormat" macro using a button on the user machine, it gets data from the server. &lt;IMG alt="Super Angry" src="http://community.qlik.com/emoticons/emotion-39.gif" /&gt;&lt;BR /&gt;To be continued, I think...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 20:31:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144270#M505798</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-15T20:31:35Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144271#M505799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this in Macro (OnOpen?):&lt;/P&gt;&lt;P&gt;set v = ActiveDocument.Variables("vDateFormat")&lt;BR /&gt; v.SetContent ActiveDocument.GetProperties.LocaleInfo.DateFmt, true&lt;/P&gt;&lt;P&gt;This would give you user date format in the vDateFormat variable. Don't forget to create that variable first with empty value.&lt;/P&gt;&lt;P&gt;This is interesting. Keep me updated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 21:50:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144271#M505799</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-05-15T21:50:34Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144272#M505800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rakesh,&lt;BR /&gt;I tried this now (and also "GetLocaleInfo"), and the result is nor from local user neither from server, but rather from the application format settings&lt;BR /&gt;SET DataFormat =...&lt;BR /&gt;This is defined on reload. If there is no DataFormat variable, it will be taken from the system where the reload runs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 22:20:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144272#M505800</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-15T22:20:47Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144273#M505801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Damn! This should be easy.&lt;/P&gt;&lt;P&gt;The last thing I can think is to create a function (say, GetMeUserLocale) which uses VBScript function GetLocale() and returns this as string value.&lt;/P&gt;&lt;P&gt;Then, have a table (load Excel, or something) in QV with LocaleID and DateFormat which will be filtered (or searched) based on the return value of GetMeUserLocale.&lt;/P&gt;&lt;P&gt;I have dealt with this situation in a real environment, but did not solve it by getting system locale, as my user could be a US user sitting in Japan still wants to see dates in US format. What I ended up doing is to have a centralized user preference management ASP application, where you can set your prferences (decimals, colors, totals, dates, etc.) for all QV Applications and this ASP app stores this information in an SQL Table. Ofcourse the key is QV Application ID assigned uniquely to each productive QV application. Then, this SQL table is loaded in every QV document (WHERE AppID = QV_App_Name) and then section access reduces this UserPref table to the accessing user only (AD User ID). This worked just fine for me in the past.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 22:34:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144273#M505801</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-05-15T22:34:43Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144274#M505802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rakesh,&lt;BR /&gt;Believe it or not, we got it! &lt;IMG alt="Cool" src="http://community.qlik.com/emoticons/emotion-11.gif" /&gt;&lt;BR /&gt;It turned out, that VBscript functions get info from the user box, unlike the QV functions that read the server. So it's basically the same as above, but I'm using VBscript to get the format from the regisrty. Well, a few lines longer:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;sub OnOpen&lt;BR /&gt; ...&lt;BR /&gt; DateFormat&lt;BR /&gt; ActiveDocument.GetApplication.WaitForIdle&lt;BR /&gt; ...&lt;BR /&gt;end sub&lt;BR /&gt;sub DateFormat&lt;BR /&gt; const HKEY_CURRENT_USER = &amp;amp;H80000001&lt;BR /&gt; strComputer = "."&lt;BR /&gt; Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" &amp;amp;_&lt;BR /&gt; strComputer &amp;amp; "\root\default:StdRegProv")&lt;BR /&gt; strKeyPath = "Control Panel\International"&lt;BR /&gt; strValueName = "sShortDate"&lt;BR /&gt; oReg.GetStringValue HKEY_CURRENT_USER,strKeyPath,strValueName,strValue&lt;BR /&gt; df = UCase(strValue)&lt;BR /&gt; ActiveDocument.Variables("vDF").SetContent df, true&lt;BR /&gt;end sub&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;I hope I didn't miss anyhing this time. Your hints really helped, thanks. &lt;IMG alt="Idea" src="http://community.qlik.com/emoticons/emotion-55.gif" /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 00:57:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144274#M505802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-16T00:57:16Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144275#M505803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oh! man. I was just wondering what I would suggest next if you say "nope, didn't work". &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; Glad it worked.&lt;/P&gt;&lt;P&gt;Thanks for your confirmation.&lt;/P&gt;&lt;P&gt;I think this thread deserve to be a Wiki.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 01:17:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144275#M505803</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-05-16T01:17:02Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144276#M505804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Done, it is on Wiki now, thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 01:58:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144276#M505804</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-16T01:58:04Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144277#M505805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;Nice solution. The only downside I see is that the macro requires system access. Would it work to do it this way, which does not require system access?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;sub DateFormat&lt;BR /&gt;df = ActiveDocument.Evaluate("getregistrystring('HKEY_CURRENT_USER\Control Panel\International', 'sShortDate')")&lt;BR /&gt;df = UCase(df)&lt;BR /&gt; ActiveDocument.Variables("vDF").SetContent df, true&lt;BR /&gt;end sub&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 02:46:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144277#M505805</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-05-16T02:46:28Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144278#M505806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob,&lt;BR /&gt;If you look up the thread you'll find almost exactly this... &lt;IMG alt="Cool" src="http://community.qlik.com/emoticons/emotion-11.gif" /&gt;&lt;BR /&gt;The problem is that it gets the registry info from server, not from user. &lt;IMG alt="Tongue Tied" src="http://community.qlik.com/emoticons/emotion-7.gif" /&gt;&lt;BR /&gt;Client will have to leave with the system access if they really want the feature.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 02:51:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144278#M505806</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-16T02:51:15Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144279#M505807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BTW, I've noticed earlier that the QV now() function returns server time instead of user on the server-based apps (if they are different), but VBscript "now" always takes it from user. I had to use this:&lt;BR /&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;private sub vNow&lt;BR /&gt; n = CDbl(now)&lt;BR /&gt; ActiveDocument.Variables("vNow").SetContent n, true&lt;BR /&gt;end sub&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;Looks like a trend... &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 02:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144279#M505807</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-16T02:58:59Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144280#M505808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Michael Solomovich wrote:If you look up the thread you'll find almost exactly this&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Michael,&lt;/P&gt;&lt;P&gt;No, I believe I am suggesting something different. Rakesh suggested using the QV GetRegistryString() function in a variable expression.&lt;/P&gt;&lt;P&gt;I'm suggesting using the QV GetRegistryString() function in the &lt;STRONG&gt;OnOpen macro VBSCript&lt;/STRONG&gt;. You should then be executing in the user's machine -- just like your other example. Except without System Access required.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 03:33:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144280#M505808</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-05-16T03:33:12Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144281#M505809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's correct Rob, Rakesh &lt;STRONG&gt;suggested&lt;/STRONG&gt; it in the variable definition, but I &lt;STRONG&gt;actually&lt;/STRONG&gt; &lt;STRONG&gt;tried&lt;/STRONG&gt; it by OnOpen event exactly because of the same reason you're thinking of. Moreover, I even tried to attach it to a button to be able to run it directly in the application on any box, user or server - and it returned server info in any situation.&lt;BR /&gt;I'll be happy if you prove me wrong in this case...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 03:41:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144281#M505809</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-16T03:41:04Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144282#M505810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I'm guilty of incomplete reading. I see you had already tested and reported the failure of exactly what I suggested. I can't make it work either.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 03:45:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144282#M505810</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2009-05-16T03:45:43Z</dc:date>
    </item>
    <item>
      <title>User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144283#M505811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for testing... &lt;IMG alt="Smile" src="http://community.qlik.com/emoticons/emotion-1.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 03:48:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144283#M505811</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-16T03:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: User-specific date format</title>
      <link>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144284#M505812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you confirm that this method actually returns the users local settings, as my attempts seems to return the servers regional settings?&lt;/P&gt;&lt;P&gt;Or perhaps you solved the quest in another way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jan 2015 16:13:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/User-specific-date-format/m-p/144284#M505812</guid>
      <dc:creator>jfkinspari</dc:creator>
      <dc:date>2015-01-07T16:13:09Z</dc:date>
    </item>
  </channel>
</rss>

