Menu Close

Tag: #powerapps

{How to } Hide the legacy app for admins on Power Platform Admin Center

Hello Everyone,

Today I am going to show how to hide the legacy app for admins on Power Platform Admin Center.

Let’s get’s started.

To hide the legacy “Dynamics 365 – custom” app for administrators in Power Apps, follow these steps:

1. Access the Power Platform Admin Center:

Navigate to the Power Platform Admin Center.

2. Select Your Environment:

In the Environments section, choose the environment where you want to modify the app visibility.

3. Modify Environment Settings:

Click on Settings > Product > Behavior.

4. Adjust Legacy App Visibility:

Locate the Show legacy app for admins option.

Set this option to Off to hide the legacy app for administrators.

By performing these steps, the legacy “Dynamics 365 – Custom” app will be hidden from administrators, ensuring that all users, including admins, utilize the modern model-driven apps.

Note: This setting was introduced to facilitate the transition from the legacy web client to the Unified Interface, promoting a consistent user experience across the platform.

That’s it for today.

I hope this helps.

Malla Reddy Gurram(@UK365GUY)
#365blogpostsin365days

Share this:

{Do you know} Allow users to resize side panes on Power Apps

Hello Everyone,

Today I am going to share my thoughts about allowing users to resize the side panes on Power Apps.

Let’s get’s started.

The ” Allow Users to Resize Side Panes” feature in Power Apps introduces the ability for users to adjust the width of side panes dynamically.

This enhancement improves usability by providing greater flexibility in how users interact with Copilot, Teams chat, and productivity tools within the Power Apps interface.

How it works:

1. Adjustable Width: Users can drag the edges of side panes to resize them according to their preference.

2. Real-Time Updates: The content inside the pane automatically adjusts to fit the new size, ensuring a smooth experience.

3. Persistent Settings: Resized panes retain their adjusted size across sessions for a personalized experience.

Key Benefits:

Increased Productivity: Users can expand panes for better visibility or reduce them to maximize workspace.

Improved Customization: Allows users to tailor their interface for multitasking and efficient navigation.

Enhanced User Experience: Provides a responsive, adaptive UI that aligns with modern web application standards.

That’s it for today.

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

Share this:

{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:

{Do you know} Modernize maker experience security settings in maker portal

Hello Everyone,

Today I am going to show how to create new security profile from maker portal.

Let’s get’s started.

Now with the maker portal users can have modern security role settings.

How do you do that?

Login into your www.make.powerapps.com

So Enable makers to use a modern and accessible security role editor while creating apps.

Now, makers can configure security role settings in Power Apps using a new security role editor.

This feature includes a new panel called New Role and lets makers configure column security profiles.

That’s it for today.

I hope this helps.

Malla Reddy Gurram(@UK365GUY)
#365blogpostsin365days

Share this:

{How to} Set Power Apps Standard Settings

Hello Everyone,

Today I am going to share how to set Power Apps Settings.

Let’s get’s started.

Power Apps behaves based on its settings, lets see what they are?

When you open power apps and on ribbon you will see the settings, click on it.

Settings:

1. General
2. Display
3. Upcoming features
4. Support

General :

General settings will have what is the name of Power App, description about it, App icon, icon your app image can be selected from it.

Icon background fill, icon fill, Auto save.

Data row limit: you can set how many records can be retrieved from the server.

Debug published app: this enables app expressions and additional debug information to be displayed in the monitor tool when debugging your published app.

Automatically create environment variables when adding data sources:

Enable the automatic creation of environment variables when connecting to data. Environment variables allow you to change data sources within solutions.

Enable App.OnStart property:

Use of the App.OnStart property can cause delays when loading an app and must be used with caution. New alternatives such as App.StartScreen offer a better way to accomolish the same thing. See documentation for guidance turn on ON.

2. Display

Display states how the power app looks based on this settings.

Screen Orientation can be either Potrait or Landscape.

Scale to fit:

Scale the app to fit available space. Turning this off allows screens and controls to fill available space.

Lock aspect ratio:

Locking this automatically maintains the ratio between height and width to prevent distortion.

what it mean is when it is turn on it will automatically adjust the height and width.

Lock orientation:

Lock orientation keeps the screen in its current orientation, even when the device is rotated.

Show mobile device notification area: When it is turned on an icon will show of the mobile operating system’s notifications, so any notifications user can see the time of messages.

Upcoming features can be viewed with Preview, experimental and retired settings here, see below image.

Support:

All about the Power App ennvironment, version, session id other useful links.

That’s it for today.

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

Share this: