<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:webfeeds="http://webfeeds.org/rss/1.0">
    <channel>
        <title><![CDATA[Databox Community]]></title>
        <description><![CDATA[Databox Community]]></description>
        <link>https://community.databox.com</link>
        <generator>Bettermode RSS Generator</generator>
        <lastBuildDate>Fri, 10 Apr 2026 21:00:37 GMT</lastBuildDate>
        <atom:link href="https://community.databox.com/rss/feed" rel="self" type="application/rss+xml"/>
        <pubDate>Fri, 10 Apr 2026 21:00:37 GMT</pubDate>
        <copyright><![CDATA[2026 Databox Community]]></copyright>
        <language><![CDATA[en-US]]></language>
        <ttl>60</ttl>
        <webfeeds:icon></webfeeds:icon>
        <webfeeds:related layout="card" target="browser"/>
        <item>
            <title><![CDATA[Problems with average percentage calculation in custom metric]]></title>
            <description><![CDATA[I'm afraid I have another issue that currently eludes me.

One type of custom metrics returns data about course completion per course. There is no date field in the result:

[
	{
		"username": "user1",
		"...]]></description>
            <link>https://community.databox.com/getting-started-q1vknk66/post/problems-with-average-percentage-calculation-in-custom-metric-aD5xPsrbu5jw46K</link>
            <guid isPermaLink="true">https://community.databox.com/getting-started-q1vknk66/post/problems-with-average-percentage-calculation-in-custom-metric-aD5xPsrbu5jw46K</guid>
            <category><![CDATA[average]]></category>
            <category><![CDATA[custom metric]]></category>
            <category><![CDATA[JSON]]></category>
            <category><![CDATA[JSONata]]></category>
            <dc:creator><![CDATA[Maike Dulk]]></dc:creator>
            <pubDate>Thu, 22 Jan 2026 16:19:39 GMT</pubDate>
            <content:encoded><![CDATA[<p>I'm afraid I have another issue that currently eludes me. </p><p>One type of custom metrics returns data about course completion per course. There is no date field in the result:</p><pre><code>[
	{
		"username": "user1",
		"email": "person1@abc.de",
		"course_id": "course_1",
		"completion": "0.39"
	},
	{
		"username": "user9",
		"email": "person9@mmm.nn",
		"course_id": "course_2",
		"completion": "0.75"
	},
	{
		"username": "user14",
		"email": "person14@scp.fr",
		"course_id": "course_1",
		"completion": "1.00"
	},
...</code></pre><p>I'm parsing  this in the Databox metric like this:</p><pre><code>(  
  $$.{
	  "value": $number(completion) * 100,
	  "dimension": "EDM (en)"
  }
)</code></pre><p>The only function of "dimension" here is to set the default name of the course - I can leave it out and it works the same.</p><p>When previewing this metric, the date below provides a sum of the completion and the number of rows, so I can easily calculate the average value myself. For this metric, it is around <strong>4819 / 71 =~ 67.9</strong>. In Advanced options -&gt; Metric Definition -&gt; Data aggregation i checked <em>handling multiple values stored for identical date/time</em>. I left the other checkboxes unticked.</p><p>However, if I preview the metric results, it displays 81 as result:</p><figure data-align="center" data-size="best-fit" data-id="cl7efqQeRYS3nR5Nj3tOT" data-version="v2" data-type="image"><img data-id="cl7efqQeRYS3nR5Nj3tOT" src="https://tribe-s3-production.imgix.net/cl7efqQeRYS3nR5Nj3tOT?auto=compress,format"></figure><p>It gets even more optimistic in the databoard where I use the metric:</p><figure data-align="center" data-size="best-fit" data-id="4n0jZPV8PIu9PoImoiV0i" data-version="v2" data-type="image"><img data-id="4n0jZPV8PIu9PoImoiV0i" src="https://tribe-s3-production.imgix.net/4n0jZPV8PIu9PoImoiV0i?auto=compress,format"></figure><p><br>Since I couldn't find out what kind of logic applies here, I tried doing the average in Jsonata itself. Pasting the JSON in the Jsonata Exerciser I arrived at this query:</p><pre><code>  $average($.$number(completion)) * 100</code></pre><p>which correctly gave me </p><pre><code>67.87323943662</code></pre><p>I tried to use this in the metric jsonata, fir which I first simplified the query to</p><pre><code> $$.{
	  "value": $number(completion) * 100,
	  "dimension": "EDM (en)"
 }</code></pre><p>.. which gives at least the same table of results below. But when I pressed Preview on this one, it suddenly displayed the correct average:</p><figure data-align="center" data-size="best-fit" data-id="esQAp2VDxozDVxO2GboWP" data-version="v2" data-type="image"><img data-id="esQAp2VDxozDVxO2GboWP" src="https://tribe-s3-production.imgix.net/esQAp2VDxozDVxO2GboWP?auto=compress,format"></figure><p><br>Great! So I saved the metric, purged the old data and refreshed the Databoard:</p><figure data-align="center" data-size="best-fit" data-id="fxXxktSvayqlNPBP7HUwc" data-version="v2" data-type="image"><img data-id="fxXxktSvayqlNPBP7HUwc" src="https://tribe-s3-production.imgix.net/fxXxktSvayqlNPBP7HUwc?auto=compress,format"></figure><p>Now that's quite funky ..  I've had several other numbers in between before I started writing this. Not sure what's going on here, but it looks as if databox has trouble handling a metric without a time dimension - maybe because it sets all rows to <strong>now </strong>? </p><p>Are you aware of any such issues, or better even, how to fix it?</p><p>Thanks in advance,</p><p><em>Maike Dulk<br>Europeana</em></p><p></p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Issues with real-time data updates in dashboards, delays or missing metrics?]]></title>
            <description><![CDATA[Hi everyone,

I’ve been setting up dashboards in databox that pull in daily metrics, but sometimes the latest updates don’t appear immediately, and certain data points seem delayed. I’m trying to figure...]]></description>
            <link>https://community.databox.com/getting-started-q1vknk66/post/issues-with-real-time-data-updates-in-dashboards-delays-or-missing-CyYVX4DQHiCqgRq</link>
            <guid isPermaLink="true">https://community.databox.com/getting-started-q1vknk66/post/issues-with-real-time-data-updates-in-dashboards-delays-or-missing-CyYVX4DQHiCqgRq</guid>
            <category><![CDATA[data manager]]></category>
            <category><![CDATA[goals]]></category>
            <category><![CDATA[visualizations]]></category>
            <dc:creator><![CDATA[Gareth Carson]]></dc:creator>
            <pubDate>Wed, 21 Jan 2026 20:10:43 GMT</pubDate>
            <content:encoded><![CDATA[<p>Hi everyone,</p><p>I’ve been setting up dashboards in databox that pull in daily metrics, but sometimes the latest updates don’t appear immediately, and certain data points seem delayed. I’m trying to figure out whether this is usually a sync issue, api refresh rate, or something else.</p><p>I ran into a scenario similar to a <a class="text-interactive hover:text-interactive-hovered" rel="noopener" href="http://telenrquiztoday.pk/">telenor quiz today app</a> workflow, where content changes daily and timing matters a lot, and it made me wonder if scheduling updates or caching could be causing the delays.</p><p>Has anyone experienced similar issues with databox dashboards? How do you usually troubleshoot delayed or missing data from sources that update frequently?</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Filtering duplicate results in custom metric]]></title>
            <description><![CDATA[I want to add a metric displaying the number of unique user accounts over time. The datasource is a custom Rest API call to an external course provider. This call returns a JSON feed containing data ...]]></description>
            <link>https://community.databox.com/apps-integrations-lma2l5w6/post/filtering-duplicate-results-in-custom-metric-xXdqsLRE83gySqR</link>
            <guid isPermaLink="true">https://community.databox.com/apps-integrations-lma2l5w6/post/filtering-duplicate-results-in-custom-metric-xXdqsLRE83gySqR</guid>
            <category><![CDATA[duplicates]]></category>
            <category><![CDATA[grouping]]></category>
            <category><![CDATA[JSON]]></category>
            <category><![CDATA[JSONata]]></category>
            <category><![CDATA[metrics]]></category>
            <dc:creator><![CDATA[Maike Dulk]]></dc:creator>
            <pubDate>Thu, 08 Jan 2026 11:38:07 GMT</pubDate>
            <content:encoded><![CDATA[<p>I want to add a metric displaying the number of unique user accounts over time. The datasource is a custom Rest API call to an external course provider. This call returns a JSON feed containing data from course enrolments, like this:</p><pre class="language-json"><code class="language-json">[ 
  {
     "username":     "learner01",
     "email":        "learner01@domain.edu",
     "course_id":    "IIIF_101",
     "is_active":    1,
     "mode":         "audit",
     "last_login":   "2025-12-02",
     "created_date": "2024-01-29"
   },{
     ...
     ...  (repeated for every course enrolment, for every user)
     ...
   }
]</code></pre><p>This feed contains an entry <em>for every course enrolment</em> of <em>all users</em>. It wasn't difficult to create a custom metric that retrieves these data, and build a datablock visualisation with it:</p><figure data-align="center" data-size="best-fit" data-id="ryQIne6WzLVVVPKmMaHAi" data-version="v2" data-type="image"><img data-id="ryQIne6WzLVVVPKmMaHAi" src="https://tribe-s3-production.imgix.net/ryQIne6WzLVVVPKmMaHAi?auto=compress,format"></figure><p>Because there are around 30 different courses available, it often happens that users enrol in more than one course, and therefore we'd like to distinguish between the <strong>total number of enrolments </strong>and the <strong>total number of active users </strong>on our course platform. </p><p>Unfortunately, the course provider has no API endpoint that provides the total number of users. It shouldn't be hard to derive that from the course enrolments endpoint though, by creating a rolling sum of the number of unique usernames. However, I haven't been able to find a way to accomplish that in Databox, for instance by selecting a field for grouping in the metric. </p><p>Then I tried to accomplish this in the JSONata expression. I found that below expression removes all duplicate users when testing in <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://try.jsonata.org">https://try.jsonata.org</a>. It first sorts the feed on created_date,  then removes all results where the email address occurs more than once:</p><pre class="language-bash"><code class="language-bash">(
$reduced := $reduce($sort($, function($l, $r) { 
          $l.$toMillis(created_date, '[Y0001]-[M01]-[D01]') &gt; 
          $r.$toMillis(created_date, '[Y0001]-[M01]-[D01]')}), 
          function ($acc, $item) {(
              $alreadyExistsInAcc := $acc[email = $item.email];
              $alreadyExistsInAcc ? $acc : $append($acc, $item)
              )},[]);

    $reduced{
	    "value": $reduced.is_active,
	    "date": $reduced.created_date,
	    "dimension": $reduced.username
    }
)</code></pre><p>I tried using this expression in the metrics editor, but it does not remove the duplicate users there. It doesn't produce an error either - it just gives all results, ignoring the $reduce function altogether. </p><p>Still, I can't imagine that something this basic cannot be achieved in Databox, so I'm probably overlooking something. Can anyone point me to a solution?</p><p>Much appreciated,</p><p><em>Maike Dulk<br>Europeana</em></p><p></p><p></p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[How to Embed or Fetch Looped Databoard Reports Dynamically via API]]></title>
            <description><![CDATA[What’s the best approach to handle Databox Databoard reports in a dynamic way — for example, fetching reports based on company ID or tags?
How can I integrate Databox Databoard reports dynamically into...]]></description>
            <link>https://community.databox.com/getting-started-q1vknk66/post/how-to-embed-or-fetch-looped-databoard-reports-dynamically-via-api-xlNgZhqbdR1BLfV</link>
            <guid isPermaLink="true">https://community.databox.com/getting-started-q1vknk66/post/how-to-embed-or-fetch-looped-databoard-reports-dynamically-via-api-xlNgZhqbdR1BLfV</guid>
            <category><![CDATA[API]]></category>
            <category><![CDATA[databoards]]></category>
            <category><![CDATA[reports]]></category>
            <dc:creator><![CDATA[Satyam]]></dc:creator>
            <pubDate>Thu, 13 Nov 2025 08:09:10 GMT</pubDate>
            <content:encoded><![CDATA[<p>What’s the best approach to handle Databox Databoard reports in a dynamic way — for example, fetching reports based on company ID or tags?<br>How can I integrate Databox Databoard reports dynamically into my external website using their API?</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[ThruPlay and ThruPlay by attribute [Facebook Ads, Meta Ads, Instagram Ads]]]></title>
            <description><![CDATA[Follow the Metric Recipe below to create the metric:




STEP 1: CREATE CUSTOM METRIC 1: TOTAL AD SPEND

Since the standard Facebook Ads connector usually provides this, you might not need to create it, but ...]]></description>
            <link>https://community.databox.com/apps-integrations-lma2l5w6/post/thruplay-and-thruplay-by-attribute-facebook-ads-meta-ads-instagram-ads-A81DUDibfvWn8ym</link>
            <guid isPermaLink="true">https://community.databox.com/apps-integrations-lma2l5w6/post/thruplay-and-thruplay-by-attribute-facebook-ads-meta-ads-instagram-ads-A81DUDibfvWn8ym</guid>
            <category><![CDATA[facebook ads]]></category>
            <category><![CDATA[instagram]]></category>
            <category><![CDATA[meta ads]]></category>
            <dc:creator><![CDATA[Milos Vukotic]]></dc:creator>
            <pubDate>Tue, 04 Nov 2025 22:11:45 GMT</pubDate>
            <content:encoded><![CDATA[<p>Follow the Metric Recipe below to create the metric:</p><p></p><h3 class="text-lg" data-toc-id="bf7c1fa5-3e52-4a09-ba71-ef3677ebbc1b" id="bf7c1fa5-3e52-4a09-ba71-ef3677ebbc1b">Step 1: Create Custom Metric 1: <strong>Total Ad Spend</strong></h3><p>Since the standard Facebook Ads connector usually provides this, you might not need to <em>create</em> it, but you'll use the <strong>Metric Builder</strong> to select and potentially segment it if you're pulling from a complex source or need a specific filter. If it's a standard metric, you can skip to Step 3, but for a true custom pull, follow this:</p><ol><li><p><strong>Navigate to Metrics:</strong> Go to the <strong>Metrics</strong> section in your Databox account.</p></li><li><p><strong>Access Custom Metrics:</strong> Click on <strong>Custom Metrics</strong> (or <strong>Metric Builder</strong>).</p></li><li><p><strong>Create New:</strong> Click the <strong>+ New Custom Metric</strong> button.</p></li><li><p><strong>Data Source:</strong> Select your connected <strong>Facebook Ads</strong> (or Facebook Ads) data source.</p></li><li><p><strong>Metric:</strong> Select the base metric for <strong>Spend</strong> (or the most relevant total cost metric).</p></li><li><p><strong>Filter/Dimension (Optional):</strong> If you only want to track spend for a specific campaign or ad set, apply the necessary filters/dimensions here.</p></li><li><p><strong>Name:</strong> Name the metric clearly, e.g., <strong>"FB Ads - Total Spend"</strong>.</p></li><li><p><strong>Save:</strong> Click <strong>Save</strong>.</p></li></ol><p></p><h3 class="text-lg" data-toc-id="5d1501a3-c15d-4b58-a19e-67dc37410dd1" id="5d1501a3-c15d-4b58-a19e-67dc37410dd1">Step 2: Create Custom Metric 2: <strong>Cost Per ThruPlay</strong></h3><p>Similar to Spend, this is likely a standard field, but you may need to use the Custom Metric builder to select and filter it.</p><ol><li><p><strong>Navigate to Metrics:</strong> Go back to the <strong>Custom Metrics</strong> area.</p></li><li><p><strong>Create New:</strong> Click the <strong>+ New Custom Metric</strong> button.</p></li><li><p><strong>Data Source:</strong> Select your connected <strong>Facebook Ads</strong> data source.</p></li><li><p><strong>Metric:</strong> Select the base metric for <strong>Cost Per ThruPlay</strong>.</p></li><li><p><strong>Filter/Dimension (Optional):</strong> Apply the same filters/dimensions as you did for the Spend metric to ensure both metrics cover the same data set.</p></li><li><p><strong>Name:</strong> Name the metric clearly, e.g., <strong>"FB Ads - Cost Per ThruPlay"</strong>.</p></li><li><p><strong>Save:</strong> Click <strong>Save</strong>.</p></li></ol><p></p><h3 class="text-lg" data-toc-id="a3774ae1-5024-4ded-9ae4-09ced45c4880" id="a3774ae1-5024-4ded-9ae4-09ced45c4880">Step 3: Create the Calculated Metric: <strong>Number of ThruPlays</strong></h3><p>This step uses the metrics created (or verified) in the previous steps to perform the reverse calculation.</p><ol><li><p><strong>Navigate to Calculated Metrics:</strong> Go to the <strong>Metrics</strong> screen and then select the <strong>Calculated Metrics</strong> tab.</p></li><li><p><strong>Create New:</strong> Click the <strong>+ New Calculated Metric</strong> button.</p></li><li><p>Enter the Formula: You will build the equation:</p><p></p><p>Number of ThruPlays = FB Ads - Total Ad Spend \ FB Ads - Cost Per ThruPlay</p><ul><li><p><strong>Variable A:</strong> Select your <strong>"FB Ads - Total Spend"</strong> Custom Metric.</p></li><li><p><strong>Operator:</strong> Select the <strong>Division (/)</strong> operator.</p></li><li><p><strong>Variable B:</strong> Select your <strong>"FB Ads - Cost Per ThruPlay"</strong> Custom Metric.</p></li></ul></li><li><p><strong>Name:</strong> Name the resulting metric clearly, e.g., <strong>"Calculated ThruPlays"</strong>.</p></li><li><p><strong>Format:</strong> Ensure the metric format is set to <strong>Number</strong> (not Currency or Percentage) with the desired decimal places, as this represents a count, e.g., "#,###".</p></li><li><p><strong>Preview and Save:</strong> Review the data preview on the right side to ensure the results look accurate, and then click <strong>Save</strong>.</p></li></ol><p></p><p>Your new <strong>"Calculated ThruPlays"</strong> metric is now available to use on any Databoard, complete with historical tracking based on the underlying metrics.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Date Range]]></title>
            <description><![CDATA[Can we hide the date range to customers and make it visible to us only? or can we make just oct 10 instead of oct 10 - Oct 10?
]]></description>
            <link>https://community.databox.com/account-billing-khdxgqmy/post/date-range-Kgzryu7UZvq3KJA</link>
            <guid isPermaLink="true">https://community.databox.com/account-billing-khdxgqmy/post/date-range-Kgzryu7UZvq3KJA</guid>
            <dc:creator><![CDATA[Chad Alfred Salvador]]></dc:creator>
            <pubDate>Mon, 27 Oct 2025 18:52:19 GMT</pubDate>
            <content:encoded><![CDATA[<p>Can we hide the date range to customers and make it visible to us only? or can we make just oct 10 instead of oct 10 - Oct 10?<br></p><figure data-align="center" data-size="best-fit" data-id="BchE9sbti5upbo7xJMIdX" data-version="v2" data-type="image"><img data-id="BchE9sbti5upbo7xJMIdX" src="https://tribe-s3-production.imgix.net/BchE9sbti5upbo7xJMIdX?auto=compress,format"></figure>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[How to Copy Multiple Databoards from an Agency to a Client Account at Once]]></title>
            <description><![CDATA[If you're managing dashboards for multiple clients, manually copying each Databoard one by one can be time-consuming especially when working with Looped Databoards. While Databox doesn’t yet support ...]]></description>
            <link>https://community.databox.com/account-billing-khdxgqmy/post/copying-several-databoards-at-once-from-agency-to-client-account-WLpljhetAHYlxS0</link>
            <guid isPermaLink="true">https://community.databox.com/account-billing-khdxgqmy/post/copying-several-databoards-at-once-from-agency-to-client-account-WLpljhetAHYlxS0</guid>
            <category><![CDATA[agency]]></category>
            <category><![CDATA[client accounts]]></category>
            <category><![CDATA[databoards]]></category>
            <dc:creator><![CDATA[Tijana Milasevic]]></dc:creator>
            <pubDate>Fri, 24 Oct 2025 07:50:36 GMT</pubDate>
            <content:encoded><![CDATA[<p>If you're managing dashboards for multiple clients, manually copying each Databoard one by one can be time-consuming especially when working with Looped Databoards. While Databox doesn’t yet support copying an entire Looped view in one click, there’s a quick workaround.</p><p>You can select all Databoards included in a Loop and copy them to a client account in bulk, saving you time and repetitive work.</p><h2 class="text-xl" data-toc-id="8aac5428-cd42-4c4e-a8af-6c5a697e3cc3" id="8aac5428-cd42-4c4e-a8af-6c5a697e3cc3">How to Copy Multiple Databoards to a Client Account</h2><ol><li><p>Open the <em>Looped Databoards</em> view in your Agency account.</p></li><li><p>Click the blue <em>Add to Loop</em> button.</p></li><li><p>From the dropdown, select <em>Copy to client account</em>.</p></li><li><p>Choose the destination client account.</p></li><li><p>All selected Databoards will be copied at once.</p></li></ol><figure data-align="left" data-size="best-fit" data-id="oIAY10eNnA5P6Nze7NHON" data-version="v2" data-type="image"><img data-id="oIAY10eNnA5P6Nze7NHON" src="https://tribe-s3-production.imgix.net/oIAY10eNnA5P6Nze7NHON?auto=compress,format"></figure><p></p><hr><h2 class="text-xl" data-toc-id="d8c5a744-0e08-4701-ad1d-13e3cf472c0c" id="d8c5a744-0e08-4701-ad1d-13e3cf472c0c"></h2><p>Instead of opening and copying each Databoard individually, this method allows you to transfer entire sets of reports in just a few clicks which is ideal for onboarding new clients or replicating reporting templates.</p><p>For more on this feature, visit the <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://help.databox.com/overview-looped-databoards">How to Use Databoard Loops guide</a>.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[How to Exclude Bot Traffic from Google Analytics 4 Data in Databox]]></title>
            <description><![CDATA[Accurate data is essential for tracking real user behavior. However, bot traffic such as spam referrals and internal IPs can skew your Metrics and mislead your performance analysis. If you notice ...]]></description>
            <link>https://community.databox.com/getting-started-q1vknk66/post/exclude-bot-traffic-in-ga4-w1UTtLDmRTg6oDw</link>
            <guid isPermaLink="true">https://community.databox.com/getting-started-q1vknk66/post/exclude-bot-traffic-in-ga4-w1UTtLDmRTg6oDw</guid>
            <category><![CDATA[google analytics 4]]></category>
            <dc:creator><![CDATA[Tijana Milasevic]]></dc:creator>
            <pubDate>Fri, 24 Oct 2025 07:43:45 GMT</pubDate>
            <content:encoded><![CDATA[<p>Accurate data is essential for tracking real user behavior. However, bot traffic such as spam referrals and internal IPs can skew your Metrics and mislead your performance analysis. If you notice suspicious spikes or irrelevant traffic sources in your Databox reports, it’s likely time to filter out bot traffic at the source: Google Analytics 4.</p><p>Fortunately, GA4 provides a few built-in ways to filter out this noise, which will also clean up your Databox reports.</p><h2 class="text-xl" data-toc-id="94906bd3-b3d2-4b4c-b475-1c804f90a291" id="94906bd3-b3d2-4b4c-b475-1c804f90a291">Steps to Exclude Bot and Spam Traffic in GA4</h2><ol><li><p><strong>Automatically Exclude Known Bots</strong></p><ul><li><p>Go to <em>Admin</em> &gt; <em>Data Collection and Modification</em> &gt; <em>Define Internal Traffic</em>.</p></li><li><p>Create a rule for internal IPs or enable the built-in bot filtering option (usually auto-enabled).</p></li><li><p>This helps GA4 automatically filter out known bot activity.</p></li></ul></li><li><p><strong>Block Spam Referrals</strong></p><ul><li><p>In <em>Admin</em> &gt; <em>Data Streams</em>, select your web stream.</p></li><li><p>Scroll down to <em>More Tagging Settings</em> and open <em>List Unwanted Referrals</em>.</p></li><li><p>Add known spam or bot domains to exclude them from future reports.</p></li></ul></li><li><p><strong>(Optional) Exclude Traffic in Databox via Custom Metrics</strong></p><ul><li><p>When building Custom Metrics in Databox, review the <em>Source/Medium</em> or <em>Referral</em> Dimensions.</p></li><li><p>Add filters to manually exclude known spam or bot sources (e.g., suspicious domains or irrelevant sources).</p></li></ul></li></ol><hr><p></p><p>Filtering bot traffic ensures your Databox Metrics reflect real user behavior, leading to more reliable decision-making. Clean data is especially important for Metrics like <em>Sessions</em>, <em>Bounce Rate</em>, and <em>Conversion Rate</em>, which are easily distorted by non-human visits.</p><p>For more help, visit the <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://help.databox.com/guide-using-google-analytics-4-with-databox">Google Analytics 4 Integration guide</a>.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Do You Need to Add Users to Databox to Share Access to Databoards?]]></title>
            <description><![CDATA[You don’t always need to add users to your Databox account to share Databoards. While you can invite team members and assign roles for full platform access, there are easier options if they just need ...]]></description>
            <link>https://community.databox.com/account-billing-khdxgqmy/post/do-you-need-to-add-users-to-databox-to-share-databoards-4XMKGi2Rl2VI3L8</link>
            <guid isPermaLink="true">https://community.databox.com/account-billing-khdxgqmy/post/do-you-need-to-add-users-to-databox-to-share-databoards-4XMKGi2Rl2VI3L8</guid>
            <category><![CDATA[scheduled snapshots]]></category>
            <category><![CDATA[shareable url]]></category>
            <category><![CDATA[user management]]></category>
            <dc:creator><![CDATA[Tijana Milasevic]]></dc:creator>
            <pubDate>Fri, 24 Oct 2025 07:24:38 GMT</pubDate>
            <content:encoded><![CDATA[<p>You don’t always need to add users to your Databox account to share Databoards. While you <em>can</em> invite team members and assign roles for full platform access, there are easier options if they just need to view Databoards.</p><p>Databox offers flexible sharing options so stakeholders can access the insights they need without requiring a login.</p><h2 class="text-xl" data-toc-id="d6382fe1-f493-4823-aa88-df064438ed50" id="d6382fe1-f493-4823-aa88-df064438ed50">Two Ways to Share Databoards Without Adding Users</h2><ol><li><p><a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://help.databox.com/overview-shareable-link"><strong>Public Live Link</strong></a></p><ul><li><p>Share a live URL that anyone can access without logging in.</p></li><li><p>Ideal for executives, clients, or team members who just need view-only access.</p></li><li><p>They can bookmark the link to check metrics anytime.</p></li></ul></li><li><p><a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://help.databox.com/overview-scheduled-snapshots"><strong>Scheduled Snapshots (PDF)</strong></a></p><ul><li><p>Automate recurring email reports with PDF snapshots of your Databoard.</p></li><li><p>Each email can also include the public live link for quick access.</p></li><li><p>Useful for regular updates to non-Databox users.</p></li></ul></li></ol><hr><h2 class="text-xl" data-toc-id="ad34d0d5-5ec0-4eca-9896-3cc2efef1ae7" id="ad34d0d5-5ec0-4eca-9896-3cc2efef1ae7"><br>When to Add Users</h2><p>If someone needs to build Databoards, edit Metrics, or manage Integrations, you’ll want to add them to your Databox account and assign an appropriate user role. </p><p>Learn more about <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://help.databox.com/overview-user-management#add-new-user">user roles here</a>.</p>]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[AB Split B Unsubscribes by Social Card Title [Mailchimp]]]></title>
            <description><![CDATA[Follow the Metric Recipe below to create the metric:


1. CONFIGURE THE DATASET

Ensure that you have the following views and columns included in your dataset. Read more about how to create a dataset [https://help.databox.com/create-a-dataset].

a) ...]]></description>
            <link>https://community.databox.com/apps-integrations-lma2l5w6/post/ab-split-b-unsubscribes-by-social-card-title-mailchimp-ipOPZsJQYbHGmG9</link>
            <guid isPermaLink="true">https://community.databox.com/apps-integrations-lma2l5w6/post/ab-split-b-unsubscribes-by-social-card-title-mailchimp-ipOPZsJQYbHGmG9</guid>
            <category><![CDATA[datasets]]></category>
            <category><![CDATA[mailchimp]]></category>
            <category><![CDATA[metric builder]]></category>
            <category><![CDATA[metric recipe]]></category>
            <dc:creator><![CDATA[Inactive Member]]></dc:creator>
            <pubDate>Thu, 25 Sep 2025 20:08:19 GMT</pubDate>
            <content:encoded><![CDATA[<p>Follow the Metric Recipe below to create the metric:</p><h2 class="text-xl" data-toc-id="4ba27540-2606-4834-98aa-abab8b4d879d" id="4ba27540-2606-4834-98aa-abab8b4d879d">1. Configure the dataset</h2><p>Ensure that you have the following views and columns included in your dataset. Read more about <a class="text-interactive hover:text-interactive-hovered" rel="nofollow ugc" href="https://help.databox.com/create-a-dataset">how to create a dataset</a>.</p><p>a) <strong>Include these columns in the Campaign Reports<em> </em>Dataset:</strong></p><table style="width: 444px" class="border-collapse m-0 table-fixed"><colgroup><col style="width: 120px"><col style="width: 166px"><col style="width: 158px"></colgroup><tbody><tr class="isolation-auto"><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 120px; min-width: 120px;" rowspan="1" colspan="1"><p>Data Source</p></th><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 166px; min-width: 166px;" rowspan="1" colspan="1"><p>Views</p></th><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 158px; min-width: 158px;" rowspan="1" colspan="1"><p>Columns</p></th></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Mailchimp</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Campaign Reports</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>ID</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p></p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p></p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Send Time</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p></p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p></p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>AB Split B Unsubs</p></td></tr></tbody></table><p><br>b) <strong>Include these columns in the Campaigns Dataset:</strong></p><table style="width: 436px" class="border-collapse m-0 table-fixed"><colgroup><col style="width: 120px"><col style="width: 164px"><col style="width: 152px"></colgroup><tbody><tr class="isolation-auto"><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 120px; min-width: 120px;" rowspan="1" colspan="1"><p>Data Source</p></th><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 164px; min-width: 164px;" rowspan="1" colspan="1"><p>Views</p></th><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 152px; min-width: 152px;" rowspan="1" colspan="1"><p>Columns</p></th></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Mailchimp</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Campaigns</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>ID</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p></p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p></p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Social Card Title</p></td></tr></tbody></table><p><br>d) <strong>Merge Datasets together:</strong></p><table style="width: 485px" class="border-collapse m-0 table-fixed"><colgroup><col style="width: 249px"><col style="width: 137px"><col style="width: 99px"></colgroup><tbody><tr class="isolation-auto"><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 249px; min-width: 249px;" rowspan="1" colspan="1"><p>Dataset</p></th><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 137px; min-width: 137px;" rowspan="1" colspan="1"><p>Column to join</p></th><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 99px; min-width: 99px;" rowspan="1" colspan="1"><p>Operator</p></th></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Mailchimp - Campaign Reports</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>ID</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Left Join</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Mailchimp - Campaigns</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>ID</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p></p></td></tr></tbody></table><p>Read more about <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://community.databox.com/advanced-analytics-use-cases/post/how-to-merge-datasets-across-different-views-or-data-sources-Edaj34IoY9LTyDd">how to merge datasets</a>.</p><hr><h2 class="text-xl" data-toc-id="d6bd5aa5-2170-471e-bf18-0332515a17cb" id="d6bd5aa5-2170-471e-bf18-0332515a17cb"><br>2. Create the Custom Metric</h2><ol><li><p>Navigate to Metric Builder and create a new Custom Metric by selecting the dataset created in the previous step. Fill out the fields as shown in the table below.</p></li><li><p>Read more about <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://help.databox.com/create-a-custom-metric">how to create a custom metric</a></p></li></ol><table style="width: 276px" class="border-collapse m-0 table-fixed"><colgroup><col style="width: 120px"><col style="width: 156px"></colgroup><tbody><tr class="isolation-auto"><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 120px; min-width: 120px;" rowspan="1" colspan="1"><p>Field</p></th><th class="relative bg-background border text-left font-bold p-2 [&amp;_p]:m-0" style="width: 156px; min-width: 156px;" rowspan="1" colspan="1"><p>Value</p></th></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Measure</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>AB Split B Unsubs</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Date</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Send Time</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Dimension</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Social Card Title</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Aggregation</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>SUM</p></td></tr><tr class="isolation-auto"><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>Filters</p></td><td class="relative border p-2 min-h-6 align-top [&amp;_p]:m-0" rowspan="1" colspan="1"><p>/</p></td></tr></tbody></table><p><br>Check out the Schema Explorer to learn more about all supported views and columns/properties: <a class="text-interactive hover:text-interactive-hovered" rel="noopener noreferrer nofollow" href="https://schema-explorer.databox.com/?integrationkey=Mailchimp">Mailchimp Schema Explorer</a></p>]]></content:encoded>
        </item>
    </channel>
</rss>