using date as parameter syntax

JeffGrant

Well-known Member
Joined
Apr 7, 2021
Messages
529
Office Version
  1. 365
Platform
  1. Windows
Hi All,

I cant seem to get this right.

I have the following API call

= Table.FromColumns({Lines.FromBinary(Web.Contents("https://XXXXX/" & "02-feb-2023" & "? etc etc

And I want to change the date part ie 02-feb-2023 to default to the system date on the computer.

For whatever reason I am gettign error messages saying that the & can not be used on text or tables.

The date parameter needs to be a text string for the API call to work

I have several API calls all using the same format, so it is becoming rather cumbersom to change them manually everyday.

Can somebody please help me out with the syntax.

Thanks in advance.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
After a several hours searching and trying different scenarios, I made the query work with this:

Let
Date = Date.ToText(DateTime.Date(DateTime.LocalNow()),"dd-MMM-yyyy")

Source = Csv.Document(Web.Contents("https://XXXX/" & Date & "?ApiKey=ZZZZZ"),[Delimiter=",", Columns=17, Encoding=1252, QuoteStyle=QuoteStyle.None])
 
Upvote 0
Solution

Forum statistics

Threads
1,216,725
Messages
6,132,340
Members
449,719
Latest member
excel4mac

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top