Comments
-
1. Make sure you dont filter out 'Pro Dev' as I can see you were using filters. 2. When you select 'Pro Dev' did its data show up? if it did, 'save and exit' in the analyzer.
-
Shouldnt be any issues. LMK if you have any
-
Wow. kudos to you. It solved my problem when there are character and numeric type in one field
-
@user06465 I think you unselected the fields within your setting. You can check the colors in the labels by comparing two graphs. The missing field has different color in both graphs and other fields have same and consistent colors. Here is the solution: 1. go to Analyzer 2. select the missing field and make sure you have…
-
Are you able to show us your screenshots?? It sounds like you didnt save your configurations. LMK
-
@AS Thanks for correcting me. Yes your right. I have revised my answer. Thanks again!
-
Hey there, If you are working in the SQL environment, then check the codes below, select a, (CASE WHEN `Product Name` like '%YOUTUBE%' then 'YouTube' WHEN `Product Name` like '%AUDIO%' then 'Audio' WHEN `Product Name` like '%FENCING%' then 'Geo-Fencing' ELSE 'unassigned' END) as b from c Note: a - field you want to query;…
-
My approach of reducing to fewer categories using SQL statement(case when and wild card). Like mentioned, you need to build it at the dataflow level so that you can add it to the filter panels. Thanks