Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
Hi team, I want to create a new column with filled blank cells with minimum launching date using the launch_date columns:
Solved! Go to Solution.
Thanks for the reply from @AntrikshSharma , please allow me to provide another insight:
Hi @manisht2388 ,
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:
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
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 !!
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 !!
Thanks for the reply from @AntrikshSharma , please allow me to provide another insight:
Hi @manisht2388 ,
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:
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
I rechecked, the date column type is in SHORT DATE format.
New_Launch_Date =
CALCULATE (
MIN ( 'Table'[Launch_Date] ),
'Table'[Launch_Date] <> "",
ALLEXCEPT ( 'Table', 'Table'[Product_Category] )
)
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
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |