-
Re: Do new values get swept into an "all" card filter?
I just tested this, new values are excluded.1 -
Re: Toggle Series through a filter
If I understand right, you want to build one card with the ability to choose your series instead of building separate cards? That sounds like a job for variables: Basically, you'll build a variable t…3 -
Re: Email connector
You'll have to set up a separate import for each tab in your document. There is an "Excel Sheet Tab Number" parameter when you set up the connector. If they all have the same data structure…1 -
Re: How to remove min/max/avg from Bullet Chart
Is your Target Value populated? If I don't add a field to Target Value, I see the min/max/avg, but if I add a Target they go away. If you don't need a Target Value, you could probably just use the re…2 -
Re: Using beast mode to compare strings
I'd probably do something like case when instr(upper(`field2`), upper(`field1`)) > 0 then 'Looks good' else 'Looks bad' end2