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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Blank duplicate values

i have beow data and i need to supress the duplicate values to a single one 

current format

sambhu_0-1610331929840.png

Expected format

sambhu_1-1610331974317.png

 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Anonymous ,

 

Create a calculated column as below.

Column = 
var min_date = CALCULATE(MIN('Table'[date]),ALLEXCEPT('Table','Table'[company name]))
return
IF('Table'[date]=min_date,'Table'[company name],BLANK())

4.PNG 

 

Best Regards,

Jay

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi, I want the same but reverse. I have a single value but I want to duplicate it 

Anonymous
Not applicable

Hi @Anonymous ,

 

Create a calculated column as below.

Column = 
var min_date = CALCULATE(MIN('Table'[date]),ALLEXCEPT('Table','Table'[company name]))
return
IF('Table'[date]=min_date,'Table'[company name],BLANK())

4.PNG 

 

Best Regards,

Jay

amitchandak
Super User
Super User

@Anonymous , You can display in a matrix with the stepped layout https://docs.microsoft.com/en-us/power-bi/visuals/desktop-matrix-visual#stepped-layout-with-matrix-visuals

 

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors