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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

Custom column with respect to distinct value

Hi,

 

I want custom column , result need to appear as (Dist Count)..

For every distinct value of column- A, first row need to appear as 1 and remaining need to display as 0.

 

VinDist count
19UUA9F29DA0262541
19UUA9F29DA0262540
19UUA9F29DA0262540
1G6AJ5SXXD01889811
1G6AJ5SXXD01889810
JA4AD2A35EZ7783361

 

Thanks,

Mohanraj.

 

@Jihwan_Kim @amitchandak 

2 ACCEPTED SOLUTIONS
Fowmy
Super User
Super User

@Anonymous 

 Add an Index Column in  Power Query then add the following column using DAX in your model.

Column = 
INT(
    Table7[Index] = 
    MINX(
        FILTER(Table7,Table7[Vin]=EARLIER(Table7[Vin]))
        ,Table7[Index]
    )
)

Fowmy_0-1622453241277.png

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

Anonymous
Not applicable

Thanks a lot.

Got it.

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@Anonymous 

 Add an Index Column in  Power Query then add the following column using DAX in your model.

Column = 
INT(
    Table7[Index] = 
    MINX(
        FILTER(Table7,Table7[Vin]=EARLIER(Table7[Vin]))
        ,Table7[Index]
    )
)

Fowmy_0-1622453241277.png

 



Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Anonymous
Not applicable

Thanks a lot.

Got it.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors