Menu Close

Author: uk365guy

{Do you know} Select columns downloaded on mobile devices on Power Apps

Hello Everyone,

Today I am going to share my thoughts on selecting the columns downloaded on mobile devices on Power Apps.

Let’s get’s started.

In Power Apps, when using a mobile device to download data (e.g., from a gallery or table), selecting specific columns for downloaded depends on how the data is structured and exported. Here’s how you can do it:

Option 1: Use Export Control (Excel or CSV)

If you are exporting data for download, follow these steps:

1. Use the Export Control (for Dataverse tables)
Add the Export Control in Power Apps.
Connect it to the data source (e.g., a Dataverse table or collection).
Configure the columns by pre-filtering the dataset using the ShowColumns() function.

2. Use ShowColumns() to Select Specific Columns

In your Power Apps formula, filter the dataset before exporting:

ClearCollect(

ExportData,
ShowColumns(
MyDataSource,
“Column1”, “Column2”, “Column3”
)

)

This ensures that only the specified clumns are included in the download.

Option 2: Use Collections for Custom Export

If you want more control over which columns appear in a downloaded file:

1. Create a Collectio with Specific Columns

ClearCollect (

FilteredData,
ShowColumns(
MyTable,
“Name”, “Email”, “Phone”

)

)

2. Export the Collection Data

Use SaveData(FilteredData, “MyData”) to score it locally.

For CSV export, use Power Automate to convert it into a downloadable file.

Option 3: Customize Gallery for Column Selection

If the user needs to choose columns dynamically:

1. Create a Checknox List for Column Selection

Add checkboxes with column names.

Store selections in a variable (e.g., SelectedColumns).

2. Filter Data Based on Selection

ClearCollect(

DynamicExport,
ShowColumns(
MyDataSource,
If(Checkbox1.Value, “Column1”, “”),
If(Checkbox2.Value, “Column2”, “”),
If(Checkbox3.Value, “Column3”, “”),
)

)

This dynamically selects columns before exporting.

Best Practices for Mobile Downloading

Use ShowColumns() to limit unnecessary data.

Optimize performance by using collections instead of querying large datasets.

For CSV or Excel exports, integrate Power Automate for structured file creation.

Steps to Create a Power Automate Flow for Exporting Selected Columns

This method will allow users to select specific columns in Power Apps and download the data as a CSV file.

1. Create a Flow in Power Automate

1. Open Power Automate https://make.powerautomate.com)
2.Click + Create –> Select Instant Cloud Flow.
3. Choose Power Apps as the trigger –> Name the flow –> Click Create.

Add an HTTP Response for Power Apps

1. Click + New Step –> Search for “Initialize Variable”.

Name SelectedColumns
Type Array
Value: Leave empty (will be passed from Power Apps).

2. Add ” List Rows” action to fetch data from your Dataverse table (or SharePoint, SQL, etc.)

Select your Table Name.

Under Filter Query, use:
ShowColumns (DataverseTable, “Column1”, “Column2”, “Column3”)
Alternatively, use OData Queries to select specific fields dynamically.

3. Add “Create CSV Table” action.

From: Select output from the previous “List Rows” action.
This convert the selected data into a CSV format.

4. Add ” Compose” action.

Input: Select output from “Create CSV Table”.

5. Add “Respond to a PowerApp or flow” action.

Add an Output –> Choose File –> Set Value to output from “Compose”.

This sends the CSV file back to Power Apps.

3. Call the Flow from Power Apps
1. In Power Apps, create a button labeled “Export Data”.
2. Connect the Power Automate Flow to Power Apps:

In Power Apps, select the button.
In the OnSelect property, add:

Set(

ExportFile,
‘YourPowerAutomateFlow’.Run(
ShowColumns(MyTable, “Name”, “Email”, “Phone”)
)

);
Download(ExportFile)

This runs the Power Automate Flow, downloads the CSVfile, and allows the user to save it.

That’s it for today.

I hope this helps.

Malla Reddy Gurram(@UK365GUY)
#365blogpostsin365days

Share this:

{How to} Create Journeys by using Copilot to describe them in Dynamics 365 Customer Insights

Hello Everyone,

Today I am going to share my thoughts on create a journey by using Copilot to describe them in Dynamics 365 Customer Insights.

Let’s get’s started.

Creating Journeys using Copilot in Dynamics 365 Customer Insights – Journeys simplifies the process by leveraging AI to generate journey description and structure them efficiently. Here’s how you can do it.

Steps to Create Journeys with Copilot in Dynamics 365 Customer Insights – Journeys:

1. Navigate to the Journeys Module

Open Dynamics 365 Customer Insights – Journeys.
Go to the Journeys section.

2. Start a New Journey

Click on + New Journey.
Choose the type of journey you want to create, such as Customer -led or Business-led.

3. Use Copilot to Describe the Journey.

In the journey editor, look for Copilot AI Assistance (it may be labeled as “Describe your journey”).

Provide a short prompt or key objective for your journey (e.g., “Welcome new customers with an onboarding email series’).

Copilot will generate a suggested journey based on best practices.

4. Review & Customize the AI- Generated Journey

Review the suggested journey, which may include emails, triggers, conditions, and actions.

Edit any step as needed.

Modify emails.
Adjust triggers(e.g., event-based, time-based).
Add additional steps or conditions.

5. Finalize & Activate the Journey

After making adjustments, Save and Validate the journey.

Once validated, click Go live to activate it.

Key Benefits of Using Copilot for Journeys

Save Time – AI generates structured journeys quickly.
Best Practices Applied – Copilot ensures that workflows follow marketing and engagement best practices.
Easy Customization – You can tweak the AI – generated flow to suit specific business needs.

That’s it for today.

I hope this helps.

Malla Reddy Gurram(@UK365GUY)
#365blogpostsin365days

Share this:

{Do you know} Allow individuals to reenter a one-time dynamic segment journey in Dynamics 365 Customer Insights

Hello Everyone,

Today I am going to share my thoughts on allowing individuals to reenter a one-time dynamic segment journey in Dynamics 365 Customer Insights.

Let’s get’s started.

In Dynamics 365 Customer Insights – Journeys, a one-time dynamic segment journey typically processes contacts only once. However, you can configure it to allow individuals to reenter the journey if they meet the criteria again.

A retail business runs a ‘Win-Back Campaign” for inactive customers who haven’t made a purchase in the last 90 days. If a customer makes a purchase and later becomes inactive again after another 90 days, they should reenter the journey and receive a new promotional email.

How to set up:

1. Create a Dynamic Segment:

Define criteria such as “Last Purchase Date is more than 90 days ago”.

The segment dynamically updates as customers meet the criteria.

2. Enable Reentry in the Journey.

In the Journey Settings, enable “Allow Reentry”.

Specify a cool down period (e.g., 90 days) before the same contact can reenter.

3. Journey Execution:

When a customer meets the criteria, they receive the email.

If they later become inactive again, they automatically reenter and go through the journey again.

Benefits:

Increase Engagement – Customers get repeated opportunities to respond.

Automates Follow – Ups – No manual intervention is needed.

Enhances Personalization – Ensures timely re-engagement based on real -time behavior.

This setup ensures that individuals continue to receiev relevant messages whenever they qualify for the journey again.

That’s it for today.

I hope this helps.

Malla Reddy Gurram(@UK365GUY)
#365blogpostsin365days

Share this:

{Do you know} Generate leads that link to an existing contact in Dynamics 365 Customer Insights

Hello Everyone,

Today I am going to share my thoughts on generating leads that is linked with an existing contact in Dynamics 365 Customer Insights.

Let’s get’s started.

In Dynamics 365 Customer Insights – Journeys, businesses can generate leads while ensuring they are linked to an existing contact, preventing duplicate records and maintaining a unified customer view.

How it works?

1. Lead Capture:

Lead are generated through web forms, event registration, email interactions, or manual entry.
Capture lead data includes name, email, phone number, or company details.

2. Matching with Existing Contacts:

Dynamics 365 automatically checks for existing contacts in the system based on predefined criteria (e.g., email or phone number).
If a match is found, the lead is linked to the existing contact, ensuring continuity in engagement history.

3. Lead Processing & Qualification:

The lead is nutured through marketing campaigns, tracked interactions, and sales follow-ups.
Once qualified, it can be converted into an opportunity for sales teams.

Benefits:

Prevents Duplicate Date – Ensure a single customer record with linked interactions.
Enhanced Lead Tracking – Sales and Marketing teams get a 360-degree customer view.
Streamlins Sales Handoff – Leads are linked to contacts, enabling personalized follow -ups.

By automating lead-contact linking, organizations improve data accuracy, optimize lead nuturing, and enhance customer engagement within Dynamics 365.

That’s it for today.

I hope this helps.
Malla Reddy Gurram(@UK365GUY)
#365blogpostsin365days

Share this:

{Do you know} Set up and execute pre and post event communications in Dynamics 365 Customer Insights

Hello Everyone,

Today I am going to share my thoughts on setting up and execute pre and post event communications in Dynamics 365 Customer Insights.

Let’s get’s started.

Dynamics 365 Customer Insights – Journeys allows businesses to automate event communications before and after an event to maximize engagement and improve attendee experience. This process is managed through Real-Time Journeys, Segmentation and Automated Messaging.

1. Pre-Event Communications (Before the Event)

Objective: Increase registration rates, reduce dropouts, and ensure attendees are well-informed.

Steps to Set Up Pre-Event Communications:

1. Create a Customer Journey for Event Attendees

Go to Real-Time Journeys in Dynamics 365

Select New Journey and define the event audience (e.g registered attendees, VIP guests).

2. Automate Confirmation Emails & Calendars Invites

After registration, an automated emails is sent with:

Event details (date, time, location, virtual link).

A calendar invite for easy scheduling.

3. Schedule Reminder Emails or SMS

1 week before: Send an email with the event agenda and speaker details.

1 day before: A reminder email or SMS notification to minimize no-slow.

4. Send Pre-Event Surveys(Optional)

Collect attendee preferences via Microsoft Forms integration.

Segment responses to personalize the event experience.

2. Post Event Communications (After the Event)

Objective: Gather feedback, nuture leads, and continue engagement after the event.

Steps to Execute Post-Event Communications:

1. Send a Thank-You Email

Immediately after the event, an email is sent to thank attendees.
Include event highlights, key takeaways, or special offers.

2. Distribute Event Recordings & Materials

Provide recorded sessions, presentation slides and other resources via a link.

3. Collect Feedback with Post -Event Surveys

Automate a survey email asking attendees for feedback on the event.
Use Power Automate to store survey results in Dataverse for future analysis.

4. Nuture Leads Based on Event Engagement

Segment attendees based on participation levels (e.g., active participants vs passive viewers).
Enroll engaged attendees into a follow-up nuture journey, offering product demos or next steps.

3. Execution & Automation Using Dynamics 365

Use Pre Built Event Templates: Simplify the setup process with templates for common event journeys.
Trigger – Based Automation: Emails and messages are sent automatically based on attendee actions.
Real-Time Analytics & Reports: Track open rates, attendees trends and engagement insights in Power BI.

Benefits of Automated Pre & Post -Event Communications

High Attendance & Engagement – Reminders and pre-event content keep attendees informed.

Seamless Experience – Automation ensures no manual follow-ups are needed.

Improved Event ROI – Follow – ups convert attendees into leads, maximizing post-event opportunities.

By setting up pre-event and post-event communications in Dynamics 365 Customer Insights, businesses can create a fully automated, personalized event experience that drives better engagement and long-term relationships.

That’s it for today.

I hope this helps.

Malla Reddy Gurram(@UK365GUY)
#365blogpostsin365days

Share this: