1
votes

In SharePoint I have a list of orders. There are a lot of columns, but the limit to LookUp is limited. I want to show just a few columns in a DataTable. How can I select a view that only has a few columns? Even if I can't select a view, how can I solve it?

Thanks for your time!

enter image description here

2

2 Answers

1
votes

This is not possible right now. There is a feature request here.

However, there is a hacky workaround. You can filter your desired columns in power automate and use that as a data source in power apps. Here is a video tutorial about it (Not my video).

1
votes

Try using ShowColumns() or DropColumns().

Example:

ClearCollect(colData,
    ShowColumns(
        BIG_SHAREPOINT_LIST,
        column1,
        column2,
        column3
    )
)

Then ONLY columns 1, 2, 3 will appear in the Collection. Easy.