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.
Hello,
I have a column field called source/medium for which has different channels. However, I am stuggling to create a group for (FB organic and facebook/paid FB Paid .
For instance I want to make sure that any source/medium field that contains facebook or Facebook or FB, and paid or Paid is grouped as FB Paid and any source/medium field containg facebook or Facebook or FB and organic or Organic is grouped as FB Organic and else as others.
Someone can help me in this?
Thank you in advance
Solved! Go to Solution.
@Anonymous , Try a new column like
if ( (search("Facebook",[source/medium],,0) >0 || search("FB",[source/medium],,0) >0 ) ,
SWitch( true() ,
search("paid",[source/medium],,0) >0 ,"FB Paid",
search("organic",[source/medium],,0) >0 ,"FB Organic ",
"Others"
), "Others")
@Anonymous , Try a new column like
if ( (search("Facebook",[source/medium],,0) >0 || search("FB",[source/medium],,0) >0 ) ,
SWitch( true() ,
search("paid",[source/medium],,0) >0 ,"FB Paid",
search("organic",[source/medium],,0) >0 ,"FB Organic ",
"Others"
), "Others")
User | Count |
---|---|
84 | |
77 | |
76 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
45 | |
43 |