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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
mogunase1
Helper III
Helper III

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

@mogunase1 

 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

Thanks a lot.

Got it.

View solution in original post

2 REPLIES 2
Fowmy
Super User
Super User

@mogunase1 

 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

Thanks a lot.

Got it.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.