Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Advanced expression editing in Update Data > Return an empty string

Avatar

Level 1

Hello everyone, would you be able to help me to define an expression in an "update data" activity ?

 

I want to import a file containing values equals to "unknown". But for every values = unknown, I want to import an empty value in Adobe Campaign. So I need to create an expression that convert a value = unknown into a empty string in adobe.

 

I know there is the expression "NoNull <Value>" that returns an empty string if the argument is NULL, but I would like to do the same if the value = unknown.

 

Thank you for your help

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @Amandined ,

Let's consider firstName is your column which has value as 'unknown'.

This will help you, first it will check for value, if it is 'unknown', then it will make the value as empty string in DB. 

unknown.PNG

Regards,

ParthaSarathy S

View solution in original post

3 Replies

Avatar

Community Advisor

Hello @Amandined 

 

You can try this code.

 

Case(When(COLUMN="unknown",''),Else(COLUMN))

 

Let me know if that works


     Manoj
     Find me on LinkedIn

Avatar

Correct answer by
Community Advisor

Hi @Amandined ,

Let's consider firstName is your column which has value as 'unknown'.

This will help you, first it will check for value, if it is 'unknown', then it will make the value as empty string in DB. 

unknown.PNG

Regards,

ParthaSarathy S

Avatar

Level 1

Thank you for your help!

I found also another solution.

In the "load file" activity I added for each column a "correspondence" :

if value = unknown then empty value

 

Capture.JPG