Forum Discussion
vijay4
3 years agoRegular Visitor
2 Column Comparison and creating 3rd calculated column
Hi All,
Please refer the below Image,
I need to create 3rd column -- only if the 2nd column value is available in 1st column.
result should look like this...
Hi,
Adapting this post your solution would be:
NewColumn = VAR _SEL = SELECTCOLUMNS('TableName', "Actual KPI", 'TableName'[Actual KPI+SFS line]) RETURN IF('TableName'[Level_02+SFS Line] IN _SEL, 'TableName'[Level_02+SFS Line], BLANK())
1 Reply
- ray_aramburoSuper User
Hi,
Adapting this post your solution would be:
NewColumn = VAR _SEL = SELECTCOLUMNS('TableName', "Actual KPI", 'TableName'[Actual KPI+SFS line]) RETURN IF('TableName'[Level_02+SFS Line] IN _SEL, 'TableName'[Level_02+SFS Line], BLANK())