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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

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
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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