Forum Discussion
Measure check
- 7 years ago
hi, vjnvinod
For your requirement, you could use IN Function in your formula,
and "Pursuit Team" coloumn has more than 1 names in it, you need to use SEARCH Function in it.
BDE check = IF ( 'Sales and Pipeline Full Data Ex'[Global Business Development Executive] IN { "Valencia, Gonzalo", "Webster, Julianne", "DiBlasio, Wendy", "Maliepaard, Yolanda", "Geyer, Jody", "Croft, Ben", "Gardner, Toby" }, "yes bde", IF ( 'Sales and Pipeline Full Data Ex'[Pursuit Leader] IN { "Valencia, Gonzalo", "Webster, Julianne", "DiBlasio, Wendy", "Maliepaard, Yolanda", "Geyer, Jody", "Croft, Ben", "Gardner, Toby" }, "yes pl", IF ( 'Sales and Pipeline Full Data Ex'[Identified By] IN { "Valencia, Gonzalo", "Webster, Julianne", "DiBlasio, Wendy", "Maliepaard, Yolanda", "Geyer, Jody", "Croft, Ben", "Gardner, Toby" }, "Yes-Identified By", IF ( SEARCH ( "Valencia, Gonzalo", 'Sales and Pipeline Full Data Ex'[Pursuit Team], 1, 0 ) > 0 || SEARCH ( "Webster, Julianne", 'Sales and Pipeline Full Data Ex'[Pursuit Team], 1, 0 ) > 0 || SEARCH ( "DiBlasio, Wendy", 'Sales and Pipeline Full Data Ex'[Pursuit Team], 1, 0 ) > 0 || SEARCH ( "Maliepaard, Yolanda", 'Sales and Pipeline Full Data Ex'[Pursuit Team], 1, 0 ) > 0 || SEARCH ( "Geyer, Jody", 'Sales and Pipeline Full Data Ex'[Pursuit Team], 1, 0 ) > 0 || SEARCH ( "Croft, Ben", 'Sales and Pipeline Full Data Ex'[Pursuit Team], 1, 0 ) > 0 || SEARCH ( "Gardner, Toby", 'Sales and Pipeline Full Data Ex'[Pursuit Team], 1, 0 ) > 0, "Yes-PT", "No" ) ) ) )By the way, you could use this tool to format your dax formula.
https://www.daxformatter.com/#
Note: Please understand that this tool is provided “AS IS” with no warranties or guarantees , and confers no rights.
Best Regards,
Lin
vjnvinod :smileysurprised:
You have simplified your question. But to provide any suggestion, Without any background of what exactly you are trying to do with this or provide with some sample data. Noone will have a scooby doo about this massive measure.
- vjnvinod7 years agoImpactful Individual
:)
below is my 4 coloumns
and my table name is
Sales and Pipeline Full Data Ex'[Global Business Development Executive.
i want to create a new coloumn, with the below condition
1) if my coloumn
"Global Business Development Executive" contains ,Valencia, Gonzalo,Webster, Julianne,DiBlasio, Wendy,Maliepaard, Yolanda,Geyer, Jody then my new coloum should show me "Yes-BDE"and if my coloumnPursuit Leader contains,Webster, Julianne, then my new coloum should show me "Yes-PLand similarly for other 2 fields as wellthe above measue works fine for me, except for coloumn Pursuit team because it has name combined something like thisJones, Colin;Chen, Cecile;- PattemManohar7 years agoCommunity Champion
vjnvinod Thanks for this. Is it possible to have some sample data to test on. Also, why can't you have a calculated column to derive this logic by having all these values into different list variables and then flagging them appropriately.
- vjnvinod7 years agoImpactful Individual
thanks Manohar,
it was a small "IN" function to reduce the complexity.
Can you read my last thread on this topic, not sure if you can find a solution on tht?