Skip to main content

How to connect Microsoft Excel to Flowsite on Mac

Learn how to connect Excel for Mac to your Flowsite flows for automatic data updates

Written by Jasvir

This guide explains how to link Microsoft Excel on macOS with your Flowsite flows so that data from your Flowsite flows updates automatically in Excel. Because the traditional Excel web connector isn’t available on the Apple version of Excel, you’ll use the Power Query blank query method with your flow’s URL and credentials to pull in the CSV data. This is for users who already have a Flowsite flow created and want live data in Excel.

Video Walkthrough

Prerequisites

Before you begin make sure you have the following:

  • Plan: Standard, Pro, Premium, Platinum

  • Permission: You will need to have the URL, Username and Password provided during the flow creation on hand

  • Skills Required: Excel (basic)

  • Device Type: Mac computer

  • Subscription: Flowsite integration access

Step-by-Step Instructions

  1. Open Microsoft Excel on your Mac.

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

  3. Select Blank query.

  4. When the blank query editor opens, overwrite the existing script with the following code block:

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

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

6. Click Next.

7. Click Configure connection when prompted.

8. Choose Basic authentication.

9. Enter your Username and Password again.

10. Click Connect to finalize the connection and load your data into Excel.

Did this answer your question?