
Contributor
2020-08-19
10:14 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Set Expression syntax for the Data Load Editor
I'm trying create a column using set expression syntax in my load statement in the data load editor:
Count(total<br_name>{<compliance_check={'PASS', 'Pass'}>}br_name) as count_compliant
Where br_name, and compliance_check are columns in my database. How would this syntax work in the data load editor? I'm getting syntax errors with that statement.
1,907 Views
2 Replies


Partner - Creator III
2020-08-19
10:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Friend
Set Analysis is only available to aggr expressions in expressions in charts, are not available to load script sentences
1,887 Views


Partner - Master III
2020-08-19
10:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
hi
you can use the total function or set analysis in your script
this should be translated to something like this
load br_name,
count(br_name) as count_compliant
from XXX
where match(compliance_check,'PASS','Pass')
group by br_name;
1,886 Views
