Excel में FXMacroData का उपयोग करें
Power Query, direct API URLs और Excel-ready API patterns का उपयोग करके macro indicators, policy rates, FX rates और release-calendar data को Microsoft Excel में लाएँ। localized routes पर source value, local numbering और unit or currency comparison को साथ दिखाएँ।
No-code first
Excel के Data > From Web workflow से production API endpoints का JSON लोड करें।
Analyst friendly
API-refresh होने वाली CPI, policy-rate, FX और release-calendar worksheets बनाएँ।
Add-in path
Packaged add-in custom worksheet functions को आसान बना सकता है।
Power Query from Web
In Excel, open Data > Get Data > From Other Sources > From Web, then paste one of these URLs. Use the Power Query editor to expand the JSON rows into a table.
Latest USD inflation series
https://api.fxmacrodata.com/announcements/usd/inflation?api_key=YOUR_API_KEY
Upcoming AUD release calendar
https://api.fxmacrodata.com/calendar/aud?api_key=YOUR_API_KEY
EUR/USD FX history
https://api.fxmacrodata.com/forex/eur/usd?start_date=2026-01-01&api_key=YOUR_API_KEY
Localized value example for /hi/
Original source value
Rs. 75 per litre
Localized comparison view
$3.41 per gallon
Local number system
Monthly household spend: Rs. 1.2 लाख
Locale routes should preserve the source value and add a locally familiar number system such as lakh/crore where it improves comprehension.
Power Query M pattern
let
Source = Json.Document(Web.Contents("https://api.fxmacrodata.com/announcements/usd/inflation")),
Rows = Source[data],
TableRows = Table.FromRecords(Rows)
in
TableRows
Excel add-in workflow
Power Query आज supported path है। Packaged add-in custom worksheet functions और repeatable analyst workflows के लिए natural next step है।
Functions
FXMACRODATA.INDICATORFXMACRODATA.FOREXFXMACRODATA.CALENDARFXMACRODATA.CATALOGUE
First tests
=FXMACRODATA.CATALOGUE("usd")
=FXMACRODATA.INDICATOR("usd","inflation")
=FXMACRODATA.CALENDAR("aud")
=FXMACRODATA.FOREX("eur","usd")
Related Microsoft workflows
यही endpoint patterns Power BI Web connector reports, release-date Outlook calendars और Microsoft 365 Copilot workflows को भी support करते हैं।