Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all -
I'm looking to create a conditional column in Power Query which would analyze 3 columns to output a 'looked up value' (date). This was probably not explained very well. But this is what I want:
I'm looking to return the NEXT nearest date for all rows with column 'type' = I. If it says, I, that means we want the next nearest date for where 'type' is O (matching with 'number'. For all rows with 'O' we can leave it as blank.
Is there a way to do this via condtional column? Or would I have to do a custom column in Power Query or DAX? Thank you in advance.
Solved! Go to Solution.
Hi , @whatisdata96
Here are the steps you can refer to :
(1)My test data is the same as yours.
(2)We can create a calculated column in your table:
Column = var _cuurent_date = 'Table'[Date]
var _tO =SELECTCOLUMNS( FILTER( 'Table' , 'Table'[Type]= "O") , "Date" , [Date])
var _compare =ADDCOLUMNS( CROSSJOIN( {_cuurent_date} , _tO) , "days" ,ABS( DATEDIFF([Date] ,[Value] ,DAY)))
var _min_days = MINX(_compare, [days])
var _mindate_table = DISTINCT( FILTER( _compare , [days] = _min_days))
return
IF([Type]="I", CONCATENATEX(_mindate_table,[Date]), BLANK())
(3)Then we can meet your need , the result is as follows:
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi , @whatisdata96
Here are the steps you can refer to :
(1)My test data is the same as yours.
(2)We can create a calculated column in your table:
Column = var _cuurent_date = 'Table'[Date]
var _tO =SELECTCOLUMNS( FILTER( 'Table' , 'Table'[Type]= "O") , "Date" , [Date])
var _compare =ADDCOLUMNS( CROSSJOIN( {_cuurent_date} , _tO) , "days" ,ABS( DATEDIFF([Date] ,[Value] ,DAY)))
var _min_days = MINX(_compare, [days])
var _mindate_table = DISTINCT( FILTER( _compare , [days] = _min_days))
return
IF([Type]="I", CONCATENATEX(_mindate_table,[Date]), BLANK())
(3)Then we can meet your need , the result is as follows:
If this method does not meet your needs, you can provide us with your special sample data and the desired output sample data in the form of tables, so that we can better help you solve the problem.
Best Regards,
Aniya Zhang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
HI
try this measure :
var daterech=selectedvalue(Table[Date])
return
calculate(Min(Table[Date]), filter(all(Table), Table[Date]>daterech))
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
12 | |
10 | |
10 | |
6 |