cancel
Showing results for 
Search instead for 
Did you mean: 

create new column in information steward based on condition

0 Kudos

Hi All,

i want to add a new column in information steward view but i want to put a condition per below example

if the result column is having 'missing' the new column should be filled with Missing country if the result column is populated then it should be kept blank

Material plant Result New column 132 3210 Missing Missing country 3330 3210 Poplulated

Accepted Solutions (1)

Accepted Solutions (1)

0 Kudos

Hi Abdul,

You can add new the column in view and in Mapping you can write either "If-then-else" condition or "Decode" will also work very fine.

For example you can use like:

Decode( DBName.dbo.TABLENAME.COLUMNNAME='Missing', 'Missing country', DBName.dbo.TABLENAME.COLUMNNAME)

Let me know if any issue. Happy to Help 🙂

Answers (1)

Answers (1)

0 Kudos

thank you Ajit it worked