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.
Is there a way within conditional column to set "todays" date so it's dynamic, so today it would show 1/29, ttomorrow 1/30, etc. Otherwise is there a way to do this same within power Query?
Solved! Go to Solution.
Hi @jcastr02,
You need to add a date so that is filter and then edit the syntax on the formula bar:
= Table.AddColumn(#"Changed Type", "Custom", each if [Date] <= Date.From (DateTime.FixedLocalNow()) then "Active" else if [Date] >= Date.From (DateTime.FixedLocalNow()) then "Future" else null)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @jcastr02,
You need to add a date so that is filter and then edit the syntax on the formula bar:
= Table.AddColumn(#"Changed Type", "Custom", each if [Date] <= Date.From (DateTime.FixedLocalNow()) then "Active" else if [Date] >= Date.From (DateTime.FixedLocalNow()) then "Future" else null)
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsCheck out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
72 | |
72 | |
38 | |
31 | |
27 |
User | Count |
---|---|
92 | |
50 | |
44 | |
40 | |
35 |