Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
simaotc
Frequent Visitor

New calculated colum,n if value is present in another column

Hello, dear community,

I have a table with the following format:

DescriptionCompanyExternal ID
FA 2023/48AAA 
FA 2023/48AAA 
adafafgagdfgaBBBFA2023/48
asfdfasgdagagdsgBBBFA2023/48

 

I would like to create a new column named InterCo, that if the company is BBB and the External ID is equal to a trim description then "AAA-BBB"

So far I tried:

 

InterCo = 
IF (
    'table'[Company] = "AAA" && 
    COUNTROWS (
        FILTER (
            'table',
            'table'[ExternalID] = SUBSTITUTE( EARLIER('table'[Description]), " ","")
        )
    ) > 0,
    "AAA-BBB",
    BLANK()
)

 

 

But without success. 

 

Any suggestion?

 

Thank you very much,

Simao

1 ACCEPTED SOLUTION
Ahmedx
Super User
Super User

or Is this what you are looking for?

Screenshot_2.png

View solution in original post

3 REPLIES 3
Ahmedx
Super User
Super User

or Is this what you are looking for?

Screenshot_2.png

Thank you @Ahmedx. This solution worked perfectly

Ahmedx
Super User
Super User

Is this what you are looking for?

Screenshot_1.png

 

 

 

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.