Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello, trying to do a chart which contains different domain names like:
gmail.com
student.domain.com
institute.domain.com
domain.com
I'm not sure if i should do a measure or create a new dimension
I'm trying to figure out how to write the expression as well and should I' do a dimension for each or would i be able to fit everything in one expression?
if(Count(Email = "*domain.com"),1,
if(Count(Email="*student.domain.com"),2,
If(Count......
and so on
Would one also be able to group all the emails having the same domain name? if some have student.domain and institute.domain but they share the same domain name and I would like to group those together in to one group?
Would Appreciate the help thanks.
I would create a new table in your data;
[EmailDomainCounts]:
Load
SubField([Email] , '@' , -1) as Domain,
count(SubField([Email], '@' , -1)) as DomainCount
Resident YourContactTable
group by SubField('Email' , '@' , -1);
I would create a new table in your data;
[EmailDomainCounts]:
Load
SubField([Email] , '@' , -1) as Domain,
count(SubField([Email], '@' , -1)) as DomainCount
Resident YourContactTable
group by SubField('Email' , '@' , -1);
Thanks for your reply!
I guess one does this in the data load editor?
I just don't understand what MyContactTable would be?
Thanks!
I figured it out, thank you!
I created it in a new section instead of using the current one and then everything loaded properly