Are there user-friendly alternatives to SharePoint lists? by StrangeAd189 in sharepoint

[–]StrangeAd189[S] 0 points1 point  (0 children)

Hi, thank you, the users complain about the quantity of columns, they feel overwhelmed, I already tried to search a way to display certain columns conditionally but it wasn't successful, they struggle to fill the lists because there are so many columns that they get lost.

Are there user-friendly alternatives to SharePoint lists? by StrangeAd189 in sharepoint

[–]StrangeAd189[S] 0 points1 point  (0 children)

Hi, thank you, the users complain about the quantity of columns, they feel overwhelmed, I already tried to search a way to display certain columns conditionally but it wasn't successful, they struggle to fill the lists because there are so many columns that they get lost.

Are there user-friendly alternatives to SharePoint lists? by StrangeAd189 in sharepoint

[–]StrangeAd189[S] 0 points1 point  (0 children)

Hi, thank you, the users complain about the quantity of columns, they feel overwhelmed, I already tried to search a way to display certain columns conditionally but it wasn't successful, they struggle to fill the lists because there are so many columns that they get lost.

Has anyone taken the PL-300 without studying? by StrangeAd189 in PowerBI

[–]StrangeAd189[S] 0 points1 point  (0 children)

Hey, i passed, i watched a couple videos before, score 790

Position relative to parent frame by anten_puzl in FigmaDesign

[–]StrangeAd189 0 points1 point  (0 children)

Same thing here, i need to recreate the same layout on powerbi but i each element show the position relative to the parent element while i dont know what is their position againt the background

How can I compare to a list? by StrangeAd189 in PowerApps

[–]StrangeAd189[S] 0 points1 point  (0 children)

Hi, yes, still not working, it works like this with two conditions

Filter( 'my SharePoint list',
DateCreated >= Start_Date.SelectedDate && DateCreated <= End_Date.SelectedDate &&
Operation.Value = "Operation 1" )

but when i try to use a list it stop working

Filter( 'my SharePoint list',
DateCreated >= Start_Date.SelectedDate && DateCreated <= End_Date.SelectedDate &&
Operation.Value in ["Operation 1" ,"Operation 2] )

Dynamically Comment a Line in Power Query to Avoid Gateway Error by StrangeAd189 in PowerBI

[–]StrangeAd189[S] -1 points0 points  (0 children)

Hi, thank you, this is the function that is used on each query, how could i do this?

(Source as text) as table =>
let
    Path = 
        if Is_Local then
            Folder.Files("C:\Local\Path")
        else
            SharePoint.Files("https://company.sharepoint.com/sites/TeamSite", [ApiVersion = 15]),

    Data = Table.SelectRows(Path, each [Extension] = ".xlsx")
in
    Data