Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
need to replicate below formula in Power BI
IF (contains([Site Name],'facebook')
OR contains([Site Name],'FACEBOOK')
OR contains([Site Name],'linkedin')
OR contains([Site Name],'snapchat')
OR [Site Name]='PINTEREST'
OR [Site Name]='TWITTER'
OR [Site Name]='REDDIT.COM')
THEN
'Social'
ELSE
[Media Channel]
END
any suggestions ?
Go to Power Query, Under ADD COLUMN Tab click on CUSTOM COLUMN.
Paste the below code.
if List.Contains({"Facebook","Twitter","Linkedin"},[ENTER YOUR COLUMN NAME]) then "SOCIAL" else ""
Regards
Ismail
User | Count |
---|---|
84 | |
77 | |
64 | |
51 | |
46 |
User | Count |
---|---|
101 | |
42 | |
41 | |
39 | |
36 |