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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Madhu155154
Regular Visitor

How to change static date to dynamic date in API, for refreshing data - to current date

Any suggestion on how to change the "end date" from static to "dynamic to the (current) Present date" for capturing the data till the current date, while refreshing it,

Data - I got the data through the API


Current Issue - I am changing the end date manually in the Power Query 


Hpqv8CV.png

 

 

 

1 ACCEPTED SOLUTION
Madhu155154
Regular Visitor

I have used the below formula to get the date and  then passed it as a parameter in API, But Thank you for your support and suggestion 

currentDate = Date.ToText(DateTime.Date(DateTime.LocalNow()), "yyyy-MM-dd"),


let

currentDate = Date.ToText(DateTime.Date(DateTime.LocalNow()), "yyyy-MM-dd"),


Source = Json.Document(Web.Contents("https://cs-intmgroservices.io/intmgmtsvc/report/nReport" & "?startDt=2020-01-01&endDt=currentDate",



View solution in original post

6 REPLIES 6
Madhu155154
Regular Visitor

I have used the below formula to get the date and  then passed it as a parameter in API, But Thank you for your support and suggestion 

currentDate = Date.ToText(DateTime.Date(DateTime.LocalNow()), "yyyy-MM-dd"),


let

currentDate = Date.ToText(DateTime.Date(DateTime.LocalNow()), "yyyy-MM-dd"),


Source = Json.Document(Web.Contents("https://cs-intmgroservices.io/intmgmtsvc/report/nReport" & "?startDt=2020-01-01&endDt=currentDate",



Madhu155154
Regular Visitor

 @Mahesh0016  , Thank you for replying.

I1.png I, have used  your suggested function in the power query, but  i am getting an error

@Please Try this. Thank You.
endDt
= #date(
Date.Year(DateTime.Date(DateTime.LocalNow())),
Date.Month(DateTime.Date(DateTime.LocalNow())),
Date.Day(DateTime.Date(DateTime.LocalNow()))
)

 2.png I have used  your suggested function in the power query, but  still I am getting an error

@Madhu155154  please try this one.
endDt=

Date.ToText(#date(Date.Year(DateTime.Date(DateTime.LocalNow())), Date.Month(DateTime.Date(DateTime.LocalNow())), Date.Day(DateTime.Date(DateTime.LocalNow()))), [Format="YYYY-MM-DD", Culture="en-US"])

Mahesh0016
Super User
Super User

@Madhu155154 I hope this helps you. Thank You.

endDt = DateTime.Date( DateTime.LocalNow() )

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors
Top Kudoed Authors