Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I have two tables read from data in spreadsheet. The first query has a column of dates (apart from many other columns) and the second query has a single col/row containing AsOf Date. I want to check whether the dates in my first query are in past/or in future compared to AsOf Date.
Table1[XYZdates] -- Table1 has 10 columns and 10 rows. One of the columns contain dates.
Table2[AsOf] -- Table2 is just a query of a single date picked from a spreadsheet.
I'm trying to add another column to Table1 in Power Query that tells me 'Y/N' depending on whether XYZdates is greater than or less than AsOf date.
How best do we achieve this?
Thanks.
Solved! Go to Solution.
Hi @Anonymous ,
Please try like this:
= Table.AddColumn(#"Reordered Columns", "Custom", each if [XYZdates] >= Table2[AsOf]{0} then "Y" else "N")
Hi @Anonymous ,
Please try like this:
= Table.AddColumn(#"Reordered Columns", "Custom", each if [XYZdates] >= Table2[AsOf]{0} then "Y" else "N")
@Anonymous , In dax this will give you max date from table2 to a new column in table 1 =maxx(Table2,Table2[AsOf date])
In M you have List.Max and Table.Max that you can try to use
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.