<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									Jedox for beginners Forum - Recent Posts				            </title>
            <link>https://jedox4beginners.com/forum/</link>
            <description>Jedox for Beginners Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 27 Apr 2026 23:31:34 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Measure Jedox Mobile vs Web access</title>
                        <link>https://jedox4beginners.com/forum/general/measure-jedox-mobile-vs-web-access/#post-70</link>
                        <pubDate>Fri, 11 Apr 2025 13:42:26 +0000</pubDate>
                        <description><![CDATA[Hi,
 
I&#039;ve built a report monitor that helps us measure how people is interacting with the reports we have in Jedox. We would love to have the capabilities of splitting the usage by access...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p> </p>
<p>I've built a report monitor that helps us measure how people is interacting with the reports we have in Jedox. We would love to have the capabilities of splitting the usage by access type: whether a report was accessed via Jedox Web or Jedox Mobile App.</p>
<p>Do you know of any script, function or log trace that can retrieve that info?</p>
<p>Thanks!</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Enrique</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/measure-jedox-mobile-vs-web-access/#post-70</guid>
                    </item>
				                    <item>
                        <title>RE: Report Usage metrics</title>
                        <link>https://jedox4beginners.com/forum/general/report-usage-metrics/#post-64</link>
                        <pubDate>Thu, 17 Oct 2024 14:56:40 +0000</pubDate>
                        <description><![CDATA[Hi @info ,
 
Thanks again. I tried with that approach, but it seems the variables don&#039;t have time to initialize when writing on the cube, at least the first time I open the report in the c...]]></description>
                        <content:encoded><![CDATA[<p>Hi @info ,</p>
<p> </p>
<p>Thanks again. I tried with that approach, but it seems the variables don't have time to initialize when writing on the cube, at least the first time I open the report in the current session. If I re-open the report, then the variables are already at their correct values and the cube gets updated.</p>
<p>Any thoughts on how to solve this in the first opening?</p>
<p> </p>
<p>Thanks!</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Enrique</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/report-usage-metrics/#post-64</guid>
                    </item>
				                    <item>
                        <title>RE: Report Usage metrics</title>
                        <link>https://jedox4beginners.com/forum/general/report-usage-metrics/#post-63</link>
                        <pubDate>Thu, 17 Oct 2024 14:32:45 +0000</pubDate>
                        <description><![CDATA[Hi @einfante,
So far, i dont see the other way but seems like to be on the roadmap.
What you can do is to set them up in combo boxes and then hide them.]]></description>
                        <content:encoded><![CDATA[<p>Hi @einfante,</p>
<p>So far, i dont see the other way but seems like to be on the roadmap.</p>
<p>What you can do is to set them up in combo boxes and then hide them.</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Jedox 4 Beginners</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/report-usage-metrics/#post-63</guid>
                    </item>
				                    <item>
                        <title>RE: Report Usage metrics</title>
                        <link>https://jedox4beginners.com/forum/general/report-usage-metrics/#post-62</link>
                        <pubDate>Tue, 15 Oct 2024 17:46:04 +0000</pubDate>
                        <description><![CDATA[@info Thanks!
 
It make sense, however, when working with canvas, it forces me to create a custom variable (via combobox) with the formula &quot;=CURRENTUSER()&quot; and &quot;=TODAY()&quot;. Do you know any ...]]></description>
                        <content:encoded><![CDATA[<p>@info Thanks!</p>
<p> </p>
<p>It make sense, however, when working with canvas, it forces me to create a custom variable (via combobox) with the formula "=CURRENTUSER()" and "=TODAY()". Do you know any way of "initialize" or create those variables withot the need of comboboxes?</p>
<p> </p>
<p>Thanks!</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Enrique</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/report-usage-metrics/#post-62</guid>
                    </item>
				                    <item>
                        <title>RE: Report Usage metrics</title>
                        <link>https://jedox4beginners.com/forum/general/report-usage-metrics/#post-60</link>
                        <pubDate>Tue, 08 Oct 2024 13:53:52 +0000</pubDate>
                        <description><![CDATA[Hi Enrique,
Here’s the approach I would take:
First, I would create a cube with the following dimensions:

Reports
Date
Users (optional)

For each report, I’d set up a macro or an &quot;o...]]></description>
                        <content:encoded><![CDATA[<p>Hi Enrique,</p>
<p>Here’s the approach I would take:</p>
<p>First, I would create a cube with the following dimensions:</p>
<ol>
<li>Reports</li>
<li>Date</li>
<li>Users (optional)</li>
</ol>
<p>For each report, I’d set up a macro or an "on open" action that writes a value of 1 to the cube at specific coordinates corresponding to the report, date, and user. This data can then be used to generate a usability report.</p>
<p>Let me know if this makes sense to you.</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Jedox 4 Beginners</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/report-usage-metrics/#post-60</guid>
                    </item>
				                    <item>
                        <title>Report Usage metrics</title>
                        <link>https://jedox4beginners.com/forum/general/report-usage-metrics/#post-57</link>
                        <pubDate>Mon, 23 Sep 2024 18:55:05 +0000</pubDate>
                        <description><![CDATA[Hi!
 
I remember a couple of years ago there was a custom report that retrieved some &quot;report usage metrics&quot;, such as:
- how many times a report had been accessed
- how many users accesse...]]></description>
                        <content:encoded><![CDATA[<p>Hi!</p>
<p> </p>
<p>I remember a couple of years ago there was a custom report that retrieved some "report usage metrics", such as:</p>
<p>- how many times a report had been accessed</p>
<p>- how many users accessed the report and how many times per user</p>
<p> </p>
<p>Kind of an audit log for reports. Can we build something alike with the current tools?</p>
<p><br />Thanks!</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Enrique</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/report-usage-metrics/#post-57</guid>
                    </item>
				                    <item>
                        <title>RE: 90 day running average</title>
                        <link>https://jedox4beginners.com/forum/general/90-day-running-average/#post-54</link>
                        <pubDate>Mon, 26 Aug 2024 13:06:55 +0000</pubDate>
                        <description><![CDATA[hi Pierre,
I would do it this way but feel free to modify my idea:

I will create a parallel hierarchy for dates which will have suffix _AVG90 (Example: 2024-08-26_AVG90)
Go to Integrato...]]></description>
                        <content:encoded><![CDATA[<p>hi Pierre,</p>
<p>I would do it this way but feel free to modify my idea:</p>
<ol>
<li>I will create a parallel hierarchy for dates which will have suffix _AVG90 (Example: 2024-08-26_AVG90)</li>
<li>Go to Integrator and add two variables type groovy (today ${Today}: return new Date().format("yyyy-MM-dd") and 90 days prior ${Today-90} return (new Date()-90).format("yyyy-MM-dd"))</li>
<li>Create an extract from the desired cube and make filtering on dates accept.inAlphaRange </li>
<li>Make sure you include empty cells so avg can be more accurate. These empty cells will be presented as null which you can replace by zeros in Groovy Function by just writing "return _input1" and check Null Default.</li>
<li>Create a Table aggregation where input will be your day as a constant value ${Today}-AVG90 (meaning you would like to write a value to this cell)</li>
<li>In Measure choose #Value and make sure aggregation is AVG.</li>
<li>Write this back to the cell and schedule the job to run every day after midnight.</li>
</ol>
<p> </p>
<p>Tadaaaa</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Jedox 4 Beginners</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/90-day-running-average/#post-54</guid>
                    </item>
				                    <item>
                        <title>90 day running average</title>
                        <link>https://jedox4beginners.com/forum/general/90-day-running-average/#post-53</link>
                        <pubDate>Fri, 09 Aug 2024 08:36:00 +0000</pubDate>
                        <description><![CDATA[Hi, How do you calculate a 90 day running average starting from the previous day (and recalculated for every day of a day dimension)?]]></description>
                        <content:encoded><![CDATA[<p>Hi, How do you calculate a 90 day running average starting from the previous day (and recalculated for every day of a day dimension)?</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Pierre</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/90-day-running-average/#post-53</guid>
                    </item>
				                    <item>
                        <title>PALO.SETDATA</title>
                        <link>https://jedox4beginners.com/forum/general/palo-setdata/#post-52</link>
                        <pubDate>Mon, 15 Jul 2024 12:19:35 +0000</pubDate>
                        <description><![CDATA[Hi team,
I recall using this functionality a few years but I&#039;ve forgotten how to set it up now. I want to have a routine using palo.setdata that can load data held on multiple rows in a spr...]]></description>
                        <content:encoded><![CDATA[<p>Hi team,</p>
<p>I recall using this functionality a few years but I've forgotten how to set it up now. I want to have a routine using palo.setdata that can load data held on multiple rows in a spreadsheet. I recall being able to use the command whereby it would cycle through the list until it reached the bottom and then it would stop. For the life of me I can't remember how to set it up. Any ideas?</p>
<p>Thanks</p>
<p>Gary</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Gary Hall</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/general/palo-setdata/#post-52</guid>
                    </item>
				                    <item>
                        <title>CAGR calculation with ^ function element is not support in Jedox, but is there a way around this ?</title>
                        <link>https://jedox4beginners.com/forum/modeler/cagr-calculation-with-function-element-is-not-support-in-jedox-but-is-there-a-way-around-this/#post-48</link>
                        <pubDate>Fri, 24 May 2024 09:15:22 +0000</pubDate>
                        <description><![CDATA[CAGR calculation with ^ function element is not supported in Jedox, but is there a way around this ? 
Example of CAGR formula: 
CAGR = (Final Value / Initial Value) ^ (1 / Number of Period...]]></description>
                        <content:encoded><![CDATA[<p>CAGR calculation with ^ function element is not supported in Jedox, but is there a way around this ? </p>
<p>Example of CAGR formula: </p>
<p>CAGR = (Final Value / Initial Value) ^ (1 / Number of Periods) - 1</p>]]></content:encoded>
						                            <category domain="https://jedox4beginners.com/forum/"></category>                        <dc:creator>Martin</dc:creator>
                        <guid isPermaLink="true">https://jedox4beginners.com/forum/modeler/cagr-calculation-with-function-element-is-not-support-in-jedox-but-is-there-a-way-around-this/#post-48</guid>
                    </item>
							        </channel>
        </rss>
		