The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi All,
The Earliest Date and Latest Date options are disabled for me in the Power Query Add Column option.
I have selected date coulmn with proprer date data type .
Please help me figure out what possible reasons could be causing this issue.
Solved! Go to Solution.
Hi, it can be used only when you select multiple columns. It returns the earliest day from the columns selection per row.
Kudos and mark as solution appreciated.
Hello Analystmate,
zenisekd has given the reason. Here is a way to add a column containing the earliest date in column "Date".
= Table.AddColumn(PreviousStep, "Earliest Date", each List.Min( PreviousStep[Date] ), type date)
Insert the step, substituting "PreviousStep" with the name of your previous step and substituting "[Date]" with the name of your date column in square brackets.
Hope this helps.
Hello Analystmate,
zenisekd has given the reason. Here is a way to add a column containing the earliest date in column "Date".
= Table.AddColumn(PreviousStep, "Earliest Date", each List.Min( PreviousStep[Date] ), type date)
Insert the step, substituting "PreviousStep" with the name of your previous step and substituting "[Date]" with the name of your date column in square brackets.
Hope this helps.
Hi, it can be used only when you select multiple columns. It returns the earliest day from the columns selection per row.
Kudos and mark as solution appreciated.
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.