Skip to main content
All CollectionsSupport GuideFlowsite Excel
Using Microsoft Excel integration on Mac
Using Microsoft Excel integration on Mac
Jasvir avatar
Written by Jasvir
Updated over a week ago

The Excel web connector is not available on the Apple version of Microsoft Excel. To combat this, the query connector can be used with the Excel integration

  1. Open Excel

  2. Go to Data tab and click "Get Data (Power Query)"

  3. Select "Blank query"

  4. Overwrite existing script with script from below

  5. Replace where it says "INSERT" with the values for URL, username, password

  6. Hit next

  7. Click "Configure connection"

  8. Select "Basic"

  9. Paste in Username and Password again

  10. And connect

let
baseUrl = "INSERT",

username = "INSERT",
password = "INSERT",

urlWithAuth = baseUrl & "?username=" & Uri.EscapeDataString(username) & "&password=" & Uri.EscapeDataString(password),

Source = Web.Contents(urlWithAuth),

ImportedData = Csv.Document(Source, [Delimiter=",", Columns=null, Encoding=1252, QuoteStyle=QuoteStyle.None])
in
ImportedData

Did this answer your question?