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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Filling blank cells from same column values

Hi team, I want to create a new column with filled blank cells with minimum launching date using the launch_date columns:

 

manisht2388_0-1721833562664.png

 

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Thanks for the reply from @AntrikshSharma , please allow me to provide another insight: 
Hi  @Anonymous ,

 

Here are the steps you can follow:

1. Create calculated column.

New_Launch_Date =
MINX(
    FILTER(ALL('Table'),
    'Table'[Product_Category]=EARLIER('Table'[Product_Category])),[Launch_Date])

2. Result:

vyangliumsft_0-1721953978883.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

Anonymous
Not applicable

I created a New Launch Date Column =
IF(ISBLANK('Table'[Launch_Date]),
CALCULATE(MIN('Table'[Launch_Date]),
FILTER(ALLNOBLANKROW('Table'), 'Table'[Product_Category] = EARLIER('Table'[Product_Category] )), 'Table'[Launch_Date]))

This worked for me !! Thanks everyone for your time !!

View solution in original post

6 REPLIES 6
Anonymous
Not applicable

I created a New Launch Date Column =
IF(ISBLANK('Table'[Launch_Date]),
CALCULATE(MIN('Table'[Launch_Date]),
FILTER(ALLNOBLANKROW('Table'), 'Table'[Product_Category] = EARLIER('Table'[Product_Category] )), 'Table'[Launch_Date]))

This worked for me !! Thanks everyone for your time !!

Anonymous
Not applicable

Thanks for the reply from @AntrikshSharma , please allow me to provide another insight: 
Hi  @Anonymous ,

 

Here are the steps you can follow:

1. Create calculated column.

New_Launch_Date =
MINX(
    FILTER(ALL('Table'),
    'Table'[Product_Category]=EARLIER('Table'[Product_Category])),[Launch_Date])

2. Result:

vyangliumsft_0-1721953978883.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Anonymous
Not applicable

I rechecked, the date column type is in SHORT DATE format.

AntrikshSharma
Super User
Super User

@Anonymous 

 

New_Launch_Date = 
CALCULATE ( 
    MIN ( 'Table'[Launch_Date] ),
    'Table'[Launch_Date] <> "",
    ALLEXCEPT ( 'Table', 'Table'[Product_Category] )
)
Anonymous
Not applicable

manisht2388_1-1721834807190.png

I get this error when added the measure to the table visual

you date must be of text data type you need to change them to date data type in Power Query

Helpful resources

Announcements
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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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