Forum Discussion
abhishekjangid
3 years agoFrequent Visitor
IN operator usage with Measure
Hi all, I am working with IN operator and I have so many measure which have hardcoded values as of now. I want to do something like this, I have a constant measure with a few whitelisted domain...
komald
3 years agoHelper I
@abhishekjangid ,You can try
Measure =
var lists = {"gmail.com", "yahoo.com"}
return
FILTER(EmailTable,EmailTable[Email] in lists)