Forum Discussion
Holland1998
5 years agoFrequent Visitor
Filter multiple rows based on single row value
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
3 Replies
- AnonymousNot applicable
- AnonymousNot applicable
[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" ) - AnonymousNot applicable
Hi Anonymous
Thanks for this. On behalf of Holland1998, I can say this has worked well for what we needed.