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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
PowerBI87
Frequent Visitor

Check if record exists

Hi All,

 

I was wondering if anyone had a solution for identifying new companies that have been added to my report?

 

For example, i would like a script to check the "Comapny" column to see if any exisitng record exists, then output either renewal or new in the furthest right column(new if no record exists) Then if a new opp comes into the table with the same company, change the output to renewal.

 

 

CompanyOppYearRenewal or New
XXY2017Renewal
XAB2018Renewal
XCD2019Renewal
YEF2019New

 

Any help would be greatl

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @PowerBI87

If there is one field  that can identify new records (such as the date field in the below screen shot) in your table, it may be easier to obtain which companies are new or renewed. Just create a calculated column with the following formula:

Renewal or New = 
VAR _countofC =
    CALCULATE (
        COUNT ( Company[Company] ),
        FILTER (
            ALL ( 'Company' ),
            'Company'[Company] = EARLIER ( 'Company'[Company] )
        )
    )
RETURN
    IF ( 'Company'[Date] = TODAY () && _countofC = 1, "New", "Renewal" )

renew or new.PNG

Best Regards

Rena

 

 

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @PowerBI87

If there is one field  that can identify new records (such as the date field in the below screen shot) in your table, it may be easier to obtain which companies are new or renewed. Just create a calculated column with the following formula:

Renewal or New = 
VAR _countofC =
    CALCULATE (
        COUNT ( Company[Company] ),
        FILTER (
            ALL ( 'Company' ),
            'Company'[Company] = EARLIER ( 'Company'[Company] )
        )
    )
RETURN
    IF ( 'Company'[Date] = TODAY () && _countofC = 1, "New", "Renewal" )

renew or new.PNG

Best Regards

Rena

 

 

 

Greg_Deckler
Community Champion
Community Champion

Saving state is not a strong suit of Power BI. You could load the "company" table twice and turn off refresh for one of them. Then you could compare.



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.