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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric 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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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