Forum Discussion
Add Column Apply to Each Row with Multiple Criteria
- Anonymous1 year ago
Hi,
Thanks for the solution ToddChitt offered, and i want to offer some more information for user to refer to.
hello Spudonis , you can create a calculated column.
Column = VAR a = SUMMARIZE ( FILTER ( 'Table', CONTAINSSTRING ( [Plan Name], "Fiber" ) ), [Customer ID] ) RETURN IF ( [Customer ID] IN a, "Y", "N" )Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi,
Thanks for the solution ToddChitt offered, and i want to offer some more information for user to refer to.
hello Spudonis , you can create a calculated column.
Column =
VAR a =
SUMMARIZE (
FILTER ( 'Table', CONTAINSSTRING ( [Plan Name], "Fiber" ) ),
[Customer ID]
)
RETURN
IF ( [Customer ID] IN a, "Y", "N" )
Output
Best Regards!
Yolo Zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you very much for this! I modified it slightly due to needing it to be case sensitive for the search but this worked wonders!
My code (thanks to you)