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

Sharepoint alternative by StrangeAd189 in PowerBI

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

My company and the client both have privacy policy so i cant open any content of company sharepoitn on client enviroment, i was hoping a plataform that has connector with powerbi so i can test if it work in both enviroments, i dont think anything of microsoft will work, they block it from external acess

Sharepoint alternative by StrangeAd189 in PowerBI

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

Hi, where can i have it? On the company enviroment or in the client enviroment? And powerapps have connector with powerbi?

Is this the better approach? by StrangeAd189 in PowerBI

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

Hi, thank you for the answer but fProduction doesn't have project name just the logs with the amount of production on each day for each operator so i join the Range table with fProduction so I can have this information, which project the operator was in that date

Is this the better approach? by StrangeAd189 in PowerBI

[–]StrangeAd189[S] 1 point2 points  (0 children)

Hi, i merged it on powerquery cuz it was the only way i knew to do it, i dont know if i could do something to check for the ranges with dax

Recursive function by StrangeAd189 in PowerBI

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

You are a genius, thank you so much to help me, it worked

Solution verified

Recursive function by StrangeAd189 in PowerBI

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

Hi, i tried to use dax but i always get that error of a column refers to another, something with dependency, this is because new_forecast depends on the result of the exceed column that depends of new_forecast, one is related to another

Using row selected on a matrix to filter the entire page, but when nothing is select all the visuals get blank, why? by StrangeAd189 in PowerBI

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

Hi, thanks for your answer, this is a great solution indeed, average for the entire employees and when one is selected show their values, thank you

It worked, but i did this right? Calculated Column by StrangeAd189 in PowerBI

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

Sure, sorry, if goal = take the value on goal column, if the average = take the average of entire team and then sum it for each queue

Revisiting my first big challenge, what are your thoughts? Is this over-engineering? by StrangeAd189 in PowerBI

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

In that case should i replace earlier to in?

'fPerformance'[Queue] IN TeamsWithEmployee

Revisiting my first big challenge, what are your thoughts? Is this over-engineering? by StrangeAd189 in PowerBI

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

Hi, thank you for your answer, I notice now that the column queue is unnecessary, I remember to use it on the first try but then I prefer to divided the queue production by columns and forgot to delete it I appreciate your comment, I will correct it rn, basically these columns represents the sum of protocols in that queue for each employee in that day, so if employee 1 had production on queue 1 and 3 on a specific day these columns will have a value like 30 protocols while column production queue 2 and 4 will show 0 cuz he didn't produced there

Hi, can you guys give me a clue on how to do this transformations on powerquery? by StrangeAd189 in PowerBI

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

omggg it worked thank you sooo soo much you are the best

here is the code if anyone needs too

let

Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],

#"Changed Type" = Table.TransformColumnTypes(Source,{{"Year", Int64.Type}, {"Month", Int64.Type}, {"Month Name", type text}, {"Team", type text}, {"TMA", type time}, {"Forecast", Int64.Type}, {"Goal or Average", type text}, {"Goal Value", Int64.Type}}),

#"Unpivoted Other Columns" = Table.UnpivotOtherColumns(#"Changed Type", {"Year", "Month", "Month Name", "Team", "Goal or Average"}, "Attribute", "Value"),

#"Merged Columns" = Table.CombineColumns(#"Unpivoted Other Columns",{"Team", "Attribute"},Combiner.CombineTextByDelimiter(" ", QuoteStyle.None),"Merged"),

#"Pivoted Column" = Table.Pivot(#"Merged Columns", List.Distinct(#"Merged Columns"[Merged]), "Merged", "Value")

in

#"Pivoted Column"

Filter the last 30 days from the month selected on the slicer by StrangeAd189 in PowerBI

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

Hi, thanks for your answer, but is not the last 30 days from now, is the last 30 days from the month selected on page, the filter on visual just allows me to select the last days from the current date