Comments
-
+1
-
@RobynLinden you can use interaction settings so that a filter card only interacts with one card. Also @Tara the filter views beta allows you to set a default page filter for all users.
-
By the way I am using the Google Analytics Advanced Connector
-
I believe we also had to make some custom fields on the GA side for User ID, Instance name, and App Name. I find that if you try to go back and edit the reports too it will mess them up on the Domo end and clear your fields and dimension. Guess that is what happened to my ID field 🙃
-
@moonmoth so I have two different reports set up for course tracking and quiz tracking. Here is my report that captures course views. The metrics are Time on Page & User Timing (ms) The dimensions are Date, Date Hour and Minute, Exit Page, Landing Page, and Page. User ID is also supposed to be on there but I am noticing…
-
Thanks @GrantSmith @jaeW_at_Onyx looks like its version 0.22.0. I will put in a ticket.
-
WOW @MarkSnodgrass silly me, thank you!!
-
@MarkSnodgrass that's as far as I could get mine to go too. Perhaps post on the ideas exchange or product feedback that we would like more ability to custom flex tables.
-
@MarkSnodgrass try removing the format and see if that gives you some decimals. My fields are numbers from the flow so its already formatted there.
-
Weird, mine seems to abbreviate to 2 decimals at least. Which values are you using for those? Are you also choosing a format for the field? I noticed when I select format as number it remove the decimal places.
-
@GrantSmith yea not sure why I never thought to use that before. I think with my other concept looking forward I had hire dates and was needing to know which anniversary dates were coming up so the default Domo options would not work. But for looking back I think they should work fine.
-
Just realized I don't even need a BM and could just use normal date operations for the card.
-
@GuitarMan2020 Not sure if I fully understand the question but based on what I think you are asking you could make a normal summary number that shows the count of everything. Then in the card view use filters to select In One, In Two, In All. You would select an option and then create an alert for that option. By the end…
-
@user015090 yes use the instance URL, when you pull data from the GA connector you will be able to get page information. Here is some info on how to set up tracking for Course Builder https://knowledge.domo.com/Training/Self-Service_Training/Course-Builder_1.4/Setting_Up_Google_Analytics_Tracking_on_a_Training_App they…
-
@WizardOz here is an example of a Beastmode I create for links, when I click on the value it brings me to a new tab. CONCAT('<a href="', 'https://abcde.com/browse/', `Key`, '" target="_blank">', `Key`, '</a>')
-
Here is an example of a link I created. CONCAT('<a href="', 'https://abcde.com/browse/', `Key`, '" target="_blank">', `Key`, '</a>')
-
@TylerMarshall what type of card are you using this in?
-
@jaeW_at_Onyx I am currently in an ETL with a few other manipulations so I am trying to keep it in there. I was able to get it working with python!
-
I do not think you can do a select all however you could make another filter to group your data, we have done something similar. For example if you are listing different types of apples and melons you could make a beastmode like the following: case when `fruit` like '%apple%' then 'apple' when `fruit` like '%melon%' then…
-
Alternatively you could also do a filter that excludes the locations that are in Utah, however this would not work if there was a location with the same name in a different state. You could also just make a beastmode using CONCAT() for state and location and then just filter them out that way.
-
You can make a Beast Mode to group the locations. Something like case when state = 'Utah' and location in ('A', 'B', 'C') then 'Keep' when state != 'Utah' then 'Keep' else 'Remove' end Then select 'Keep' as your filter. This should filter out anything that is not location A, B, or C in Utah.
-
Yea it is really annoying. What I have tried to do is use tagging to help distinguish between our big areas and then I do a search for that tag in the datacenter and then select all those datasets and share them with different users. If a lot of your inputs contain similar phrases or if there is a way to search for them…
-
@user14700 yes you would have to share all inputs for them to see the dataflow. Most likely they would have to be shared using Edit and then they would also need a role that allows them to edit dataflows they have access to.
-
Yes, when you do a Save As it automatically links them.
-
The default pages are for all users to see and do not need sharing. You could put PDPs on the data so the cards are filtered but I am not sure how beneficial that would be.
-
The ordering is unique for each user. In admin settings you can set default company pages all users get and you can order those. I am not sure if there is a way to order non company pages for all users.
-
I see, how are you calculating your %? The problem is your other values are null so they are falling out, you would have to somehow fill in a value for them in order for them to get counted. How do you know those values actually included in March and not a different month?
-
You can use Beast Modes on a filter card as I use one. However you have to be careful how you make the Beast Mode, I do not think aggregates are supported. Make sure your Beast Mode is also saved to the dataset so it can filter the other cards, if there are different datasets you will need to add the same Beast Mode to…
-
How exactly would you want to use a filter on a calendar date? How would a calendar date relate to your data? There is a also a Beast Mode function to use the current date.
-
What is wrong with it?