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,
Below is the data for which I want to get today's date, if it's in current month. I wrote a formula, which is returning as "Function" in cell value. How to get Today's date in the cells.
if Date.IsInCurrentMonth([End Date])=true then DateTime.LocalNow else [End Date]
| End Date | Required date |
12/01/2023 | 12/22/2023 |
11/01/2023 | 11/01/2023 |
| 10/01/2023 | 10/01/2023 |
When I click on Function it goes to invoked function and shows current time and date. Please help me with this.
Solved! Go to Solution.
Hello! Please try this:
if Date.IsInCurrentMonth([End Date]) then Date.From(DateTime.LocalNow()) else [End Date]
Hello! Please try this:
if Date.IsInCurrentMonth([End Date]) then Date.From(DateTime.LocalNow()) else [End Date]
You are close:
if Date.IsInCurrentMonth([End Date])=true then DateTime.LocalNow() else [End Date]
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.