Join our Community in its new Home - The Datorama Trailblazer Community Group!
It's been an amazing 3 years coming together in this forum to collaborate, innovate, support, and inspire each other about our shared usage of Datorama. While this is not quite a goodbye, we are excited to announce that we are getting a fresh start in our new home within the Salesforce Trailblazer Community. We have a ton of fun new content planned and you may even see the revival of some of our most popular posts from the past few years.
We’ll be keeping this group around for a bit for you to peruse, but as of November 15, we will no longer be allowing new posts or comments. Be sure to join our new group at https://www.salesforce.com/success-datorama to keep the conversation going.
We can’t wait to see you there!
It's been an amazing 3 years coming together in this forum to collaborate, innovate, support, and inspire each other about our shared usage of Datorama. While this is not quite a goodbye, we are excited to announce that we are getting a fresh start in our new home within the Salesforce Trailblazer Community. We have a ton of fun new content planned and you may even see the revival of some of our most popular posts from the past few years.
We’ll be keeping this group around for a bit for you to peruse, but as of November 15, we will no longer be allowing new posts or comments. Be sure to join our new group at https://www.salesforce.com/success-datorama to keep the conversation going.
We can’t wait to see you there!
TotalConnect Function (Exclude Rows)


Hello everyone,
1. How to exclude rows by using conditions while doing mapping TotalConnect?
For example: Rows will be excluded when SiteName contains 'Facebook'
2. By using TotalConnect Function or Calculated Measurement, how to change Measurement value to 0 ?
Comments
1. You have two ways to exclude rows from being uploaded. This is called a Data Load Rule.
- The first option is using the available feature for data load rules:
https://support.datorama.com/en/support/solutions/articles/4000085204-data-load-rules
- The second is by, what we call, a Manual Data Load Rule. This is a formula in the Day dimension of the Data Stream, which says for example:
if(csv['SiteName'] contains 'Facebook'){null;]
else{csv['date'];}
If the Day dimension is null, the whole row would not be ingested.
2. In order to just change the measurement value to 0, you need a similar syntax:
if(csv['SiteName'] contains 'Facebook'){0;]
else{csv['measurement'];}
Let me know if you need anything else