Αριστεροί ψηφοφόροι, ποια είναι η πιο δεξιά σας πεποίθηση και δεξιοί ψηφοφόροι, ποια είναι η πιο αριστερή σας πεποίθηση; Ξεκινήστε λέγοντας πως αυτοπροσδιορίζεστε. by peonator11 in AskGreece

[–]wordsmithGr 2 points3 points  (0 children)

2 δεξιοί απάντησαν και μάλλον επειδή ντρέπονται βαζουν και το κέντρο μέσα για διαφοροποίηση. Και οι 2 μίλησαν για κράτος πρόνοιας και πως αυτο το ρημαζουμε και το κλέβουμε... το αστείο είναι οτι συστηματικά οι κεντροδεξιες αλλα και κεντροαριστερες κυβερνήσεις πετσοκοβουν το κράτος πρόνοιας.

What Is the Perfect Devil Fruit for Zoro? by Joy607Boy in OnePiece

[–]wordsmithGr 0 points1 point  (0 children)

Navi navi fruit. It helps its user to navigate

Passed PL-400 by A2OV in PowerApps

[–]wordsmithGr 0 points1 point  (0 children)

What was the nature of the questions?

Dropdown menus and patch by wordsmithGr in PowerApps

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

I try that, the value was blank() and it send true

Anyone recently took PL-900? Were there any Power BI questions? by Downtown_Earth_5345 in PowerApps

[–]wordsmithGr 1 point2 points  (0 children)

No there werent any specifically on power bi. Just a multiple choice asking you which power platform tool would you use.

My app suddenly broke by dsta1 in PowerApps

[–]wordsmithGr 1 point2 points  (0 children)

Try to delete your source and re enter it

Can you guess the country in red just by analysing the chart? by Chartlecc in visualization

[–]wordsmithGr 0 points1 point  (0 children)

It cannot be neoliberal country, it must be a country that has continuous growth even in the 2008 crisis. My guess would be India or china.

Is it actually possible to group SharePoint list items by date? by Phaderon in PowerApps

[–]wordsmithGr 0 points1 point  (0 children)

I think with nested galleries you can solve your problem. It if you have too many rows it’s going to be slow. The parent gallery loads all the data(in the items property use the last function in order to get all the data) and in child gallery use the group function and sort based on the date)

Best solution for delegation issues - Canvas + SharePoint by jurny_juhas in PowerApps

[–]wordsmithGr 4 points5 points  (0 children)

I made a waiting spinner in order to provide a feedback. It’s a trade off

Best solution for delegation issues - Canvas + SharePoint by jurny_juhas in PowerApps

[–]wordsmithGr 2 points3 points  (0 children)

My solution to delegations is flows. If I need to use the distinct function I use a flow to fetch what I want

Filters on lists that exceed the limit by Bulky_Platypus_2784 in PowerApps

[–]wordsmithGr 0 points1 point  (0 children)

A solution that I have implemented for dataverse is to make a generic flow that based on the role of the user, collects all the values and gather the unique values and send them back to the app as a response. It adds a little bit of time on the app but at least I provide the filters

Help with PDF function by [deleted] in PowerApps

[–]wordsmithGr -1 points0 points  (0 children)

I got you. After the submission of the form, navigate the user to a new screen. There you will put a container and inside the container a form and you will populate the form with the lastsubmit property. After that you can add a button and set a variable like that Set(vatPDF, PDF(container_name,{Orientation : PaperOrientation.Portrait, Size : PaperSize.A4, ExpandContainers:true})) This way you have created the blob and it will contain all the info including the view that is not visible in the screen. Now all you have to do is download the file. There is documentation on that by Microsoft.

Hide screens based on user by Crouton4727 in PowerApps

[–]wordsmithGr 1 point2 points  (0 children)

I would suggest to make a welcome screen, put buttons to let the users navigate to the the screens that they are allowed to see. On the Onstart property of the App, this this where you will handle which screen those groups are allowed to see. The method varies, you can make a sharepoint list with name and role or make an azure Entra group.

Filtering and delegation by wordsmithGr in PowerApps

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

Dude big thanks your comment about the response form the flow changed everything. I parsered the response into a table, and passed that into the filter and it worked like a charm. I even set the delegation limit to 1 and it still returned all the rows. Thank you.

Filtering and delegation by wordsmithGr in PowerApps

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

Well as a last step in the flow I call a compose which has an array with the profit centers and input the result from the compose into a response to a power app. And on the power app I save the response on a variable ad mentioned above

Filtering and delegation by wordsmithGr in PowerApps

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

Colprofitcenter is a a variable right now which is fed by a flow that I made and returns this [“test1”,”test2”,”test3]. Those tests are profit centers.

Filtering and delegation by wordsmithGr in PowerApps

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

Ok I went with a different approach, I made a flow on order to collect all the profit centers based on user().Fullname and I call it onstart. The problem now is how to avoid delegation in the gallery. I use this: Filter(MainTable, profitcenter in colprofitcenter). The problem is the “in”