Best Of
Re: Get Top 5 category values for each date from category
You can do this by using the rank window function in a beast mode and then adding it to the filter to filter where rank is less than or equal to 5.
RANK() OVER (PARTITION BY WEEKOFYEAR(`date`) ORDER BY SUM(`metricfield`) DESC)
If you don't have window functions for beast modes turned on in your instance, you will need to have your CSM enable it.
Writing Beast mode with Data label of Measures
Hi All,
I have three measures - Open qty, onhandunits and openpoqty... When they are brought into the table in visualizer they are brought in as sum(Open qty) , sum(onhandunits ) and sum(openpoqty) and then given different data label names
Now I am trying to create a filter using the condition
case when sum(open qty)> sum(sum(onhandunits),sum(openpoqty)) then 1 else 0 end...Can you please let me know how to do this in beast mode
Re: Card filtering in analyzer
Have you tried using a COALESCE and filtering on the default value?
COALESCE(`field`, 'Empty')
What is the best password policy for Encryption on Workbench
We have a requirement to encrypt a few fields while uploading via workbench. What will be a good encryption password policy? Let's say we have ten fields that need to be encrypted, and 30 users need access to them that they can decrypt with a password.
- do you create 30 different encryption passwords
- how do you manage these passwords ( FOR forgotten password or periodically changing the password)
If you are encrypting your field in the workbench, please give us some pointers.




