1

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 Answers 2

1

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).

Sign up to request clarification or add additional context in comments.

1 Comment

You are my hero! But I have another problem, because that video shows how to do it with SQL, so how can I do it with SharePoint? I've been trying for hours...
1

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.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.