<?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 numeric value into words in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262049#M98698</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/nstefaniuk" id="jive-5054215217860539391966"&gt;nstefaniuk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS ALOT..............I DID IT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 17 Jan 2012 07:40:53 GMT</pubDate>
    <dc:creator />
    <dc:date>2012-01-17T07:40:53Z</dc:date>
    <item>
      <title>numeric value into words</title>
      <link>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262045#M98694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can i show my numeric figure (i.e Amount into words) like 10 to ten&amp;nbsp; 1000 to one thousand and so on........ is there any way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 09:06:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262045#M98694</guid>
      <dc:creator />
      <dc:date>2012-01-10T09:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: numeric value into words</title>
      <link>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262046#M98695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shariq,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on the level of customization you need you can use an inline mapping table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;TextMap:&lt;/P&gt;&lt;P&gt;MAPPING LOAD * INLINE [&lt;/P&gt;&lt;P&gt;Number, Text&lt;/P&gt;&lt;P&gt;1, One&lt;/P&gt;&lt;P&gt;10, Ten&lt;/P&gt;&lt;P&gt;100, One Hundred&lt;/P&gt;&lt;P&gt;1000, One Thousand&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Number:&lt;/P&gt;&lt;P&gt;LOAD Number,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; white-space: pre; background-color: #ffffff;"&gt;TextMap', Number) AS NumberToText&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'Lucida Grande', Arial, Helvetica, sans-serif; white-space: pre; background-color: #ffffff;"&gt;FROM...&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2012 10:24:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262046#M98695</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2012-01-10T10:24:46Z</dc:date>
    </item>
    <item>
      <title>numeric value into words</title>
      <link>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262047#M98696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply Miguel ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is helpful but it will not work for the figure like $1264 mean "Twelve hundred sixty four dollars" b/c it is not dynamic&lt;/P&gt;&lt;P&gt;I also have the SQL script having a function which convert number to text how can I use this script in Qlikview...&lt;/P&gt;&lt;P&gt;any thing through macros or.....?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2012 03:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262047#M98696</guid>
      <dc:creator />
      <dc:date>2012-01-16T03:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: numeric value into words</title>
      <link>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262048#M98697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you know the min/max possible amounts you can pre-load the words with a SQL query like that (in Oracle, for example for amount from 1 to 1000) :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;"amount",&lt;/P&gt;&lt;P&gt;'yourfunction("amount")' "words"&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;(&lt;/P&gt;&lt;P&gt;select&lt;/P&gt;&lt;P&gt;level "amount"&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;dual&lt;/P&gt;&lt;P&gt;connect by level &amp;lt; 1000&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best could be to load the words 1 time in 1 shot and keep it in a QVD, and use it in read only. Care this query, if not used properly, can go in infinite loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have a too huge range but few possibilities, maybe you can create a loop on the possible amounts to retrieve the words from SQL. It means that if you have 5000 distinct amounts, you will send 5000 SQL queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last solution is to translate the function you have in qlikview script or VB script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2012 09:46:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262048#M98697</guid>
      <dc:creator>nstefaniuk</dc:creator>
      <dc:date>2012-01-16T09:46:16Z</dc:date>
    </item>
    <item>
      <title>numeric value into words</title>
      <link>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262049#M98698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" href="https://community.qlik.com/people/nstefaniuk" id="jive-5054215217860539391966"&gt;nstefaniuk&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANKS ALOT..............I DID IT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 07:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/numeric-value-into-words/m-p/262049#M98698</guid>
      <dc:creator />
      <dc:date>2012-01-17T07:40:53Z</dc:date>
    </item>
  </channel>
</rss>

