Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
rmcgrath
Helper I
Helper I

How to make a parameter be today's date

I have created two parameters:

StartDateParam = 1/1/2022

EndDateParam = 3/5/2024

 

I have the following M code to pull in a stored procedure into Power BI:

 

let
     StartDate = Text.From ( StartDateParam ),
     EndDate = Text.From ( EndDateParam ),
     Source = Sql.Database("S-DB2-VMC\VERSOVA_PROCDATA", "EggProcPlant_Test",
     [Query="EXECUTE [dbo].[sp_Gp_GrdEggSalesComb]#(lf) @Startd = '" & StartDate & "'#(lf) , @Endd = '" & EndDate & "'"])
in
     Source

 

Works great...however, I would like to have the EndDateParam always use today's date so I don't have to manually update the parameter each time.  How would I do that?

2 ACCEPTED SOLUTIONS

@rmcgrath 

i dont get, why you want to put it in the current value . 

 

i meant go to advanced edior 

Daniel29195_0-1709758266873.png

 

and change the m code for the following line . 

 

 

let me know if this helps /

 

 

If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠:

View solution in original post

Got it...thank you!!  I appreciate the help!

View solution in original post

4 REPLIES 4
Daniel29195
Super User
Super User

@rmcgrath 

 

please try this : 
EndDateParam = Text.From(DateTime.Date(DateTime.LocalNow()))

 

let me know if this helps .

 


If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠

Thank you for the quick response!  Unfortunately, I get the following error:  DataSource.Error: Microsoft SQL: Error converting data type varchar to datetime.

 

How do I put that formula into the Parameter editor?  I tried the attached screenshot, but it did not work (produced the error above)

rmcgrath_0-1709676023211.png

 

 

@rmcgrath 

i dont get, why you want to put it in the current value . 

 

i meant go to advanced edior 

Daniel29195_0-1709758266873.png

 

and change the m code for the following line . 

 

 

let me know if this helps /

 

 

If my answer helped sort things out for you, i would appreciate a thumbs up 👍 and mark it as the solution
It makes a difference and might help someone else too. Thanks for spreading the good vibes! 🤠:

Got it...thank you!!  I appreciate the help!

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.