I am trying to import JSON data into Google Sheets essentially like IMPORTHTML("URL"&A1&"URL")
. Basically trying to adjust the URL by the contents of Cell A1. It seems to work fine with IMPORTHTML function but not IMPORTJSON function URL. Is there another way to code the URL to allow the cell content to adjust it?
=IMPORTJSON("https://financialmodelingprep.com/api/v3/income-statement/"&AAPL&"?limit=120&apikey=demo")
I found the answer!=IMPORTJSON(CONCATENATE("https://financialmodelingprep.com/api/v3/income-statement/";AAPL;"?limit=120&apikey=demo"))