Creating a CSV File with Byte Order Mark (BOM) in Power Automate
In Power Automate, creating a CSV file with a Byte Order Mark (BOM) can help ensure compatibility with applications that require UTF-8 encoding. This guide will walk you through setting up a flow that creates a CSV file with BOM in OneDrive. Step-by-Step Guide 1.Create an Instant Flow Start by creating an Instant Cloud Flow in Power Automate. Click New flow > Instant cloud flow > Enter Flow name Select Manually trigger a flow > Click Create 2. Initialize CSV Data Variable with Sample Data Add an Initialize Variable action. Set Name to varCSVData . Set Type to Array . In the Value field, enter your sample data directly, like this: Optionally rename the action : Initialize varCSVData [ { "Name" : "John Doe" , "Email" : "john@example.com" , "Country" : "USA" }, { "Name" : "Jane Smith" , "Email" : "jane@example.com" , "Country" : "Ca...