Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi all,
I have data in Column A and column B. Wanted to try and recreate column C.
I could think to do a CONCATENATEX and ALLEXCEPT and then a IFISNUMBERSEARCH but wondered if there was an easier way?
Thanks,
Tom and @Anonymous
Hi @Anonymous
Thanks for this. On behalf of @Holland1998, I can say this has worked well for what we needed.
[Opp Has Bananas?] = // calculated column
var Opp_ = T[Opportunity ID]
var Result =
NOT ISEMPTY(
FILTER(
T,
T[Opportunity ID] = Opp_
&&
T[Product Sold] = "bananas"
)
)
return
if( Result, "Yes", "No" )
User | Count |
---|---|
13 | |
12 | |
8 | |
8 | |
6 |
User | Count |
---|---|
28 | |
19 | |
13 | |
11 | |
7 |