TECHNOLOTREE
TECHNOLOTREE
  • 12
  • 3 262
PowerApps Gallery Item Numbered Rows / Ranking | Example User Score-Based Ranking from Test Results
UA-cam Video Description:
In this tutorial, I walk you through a PowerApps solution for adding numbered rows or ranking users based on their scores in a test. Using ClearCollect, ForAll, and conditional logic, I show you how to:
Rank users based on their scores from highest to lowest.
Manage collections for user rankings and scores.
Dynamically update rankings using the Max function and conditional checks.
Key Points:
How to use ClearCollect to initialize and manage collections in PowerApps.
Iterating through a list of users with ForAll to process each record.
Ranking logic to handle score comparisons and updating rank values.
How to store and update user scores and ranks.
If you need personalized help or consulting for ,SharePoint, SPFX solutions, PowerApps, Power Automate, or any other technical needs, feel free to reach out to info@110consulting.co.za ! We can have a session to help you solve complex problems, optimize your solutions, or provide guidance for your projects.
Logic/formulas/code:
wf14f.sharepoint.com/:t:/g/EVAW8bpTGihHp5as21lI038ByY6z6gZfuylmovv4OaFlZw?e=zsCRu0
Переглядів: 24

Відео

SharePoint Accordion(Menu Links) Multi-Level/Nested - Webpart - FULL DEPLOYMENT
Переглядів 10114 днів тому
Note: default styling has been added to the webpart but you can still add custom css file find solution on github.com/afaik-peace/AccordionNestedSPFX/tree/main For custom solutions email info@110consulting.co.za. Transform your website’s content presentation by creating multi-level nested accordion/links menu with link to files, pages and external sites using SharePoint document library. Add yo...
SharePoint Accordion(Menu Links) Multi-Level/Nested - Webpart
Переглядів 279Місяць тому
Note: default styling has been added to the webpart but you can still add custom css file find solution on github.com/afaik-peace/AccordionNestedSPFX/tree/main If you prefer the sppkg file ready to install webpart, please email info@110consulting.co.za. Transform your website’s content presentation by creating multi-level nested accordion/links menu with link to files, pages and external sites ...
Hide SharePoint List View Buttons
Переглядів 1732 місяці тому
Hide command buttons on SharePoint List views such NEW ITEM or EDIT IN GRID VIEW JSON BELOW: { "$schema": "developer.microsoft.com/json-schemas/sp/v2/row-formatting.schema.json", "commandBarProps": { "commands": [ { "key": "new", "hide": true }, { "key": "editInGridView", "hide": true }, { "key": "share", "hide": true }, { "key": "export", "hide": true }, { "key": "automate", "hide": true }, { ...
PowerApps Custom Connectors sending JSON DATA OR FORM DATA
Переглядів 1864 місяці тому
Create custom connectors in PowerApps step by step. JSON data vs form-data
Use OLD DEVICE as secondary monitor. laptop, tab or phone
Переглядів 174 місяці тому
Use an old device such as a laptop or tab as a secondary monitor with the SPACEDESK software
LEARN TO WRITE CODE.
Переглядів 226 місяців тому
Always been fascinated by what coders to, learn to do it yourself by getting started with HTML, CSS and JavaScript.
Power Apps Impersonation using Power Automate for restricted data.
Переглядів 1877 місяців тому
1. PowerApps display data from RESTRICTED ACCESS PAYSLIPS DATA SOURCE in SharePoint list. Only ADMIN account has access. 2. Using ADMIN IMPERSONATION within PowerAutomate to get data. 3. Email Address(or chat id for external account) used as unique ideintifier so correct list item for the logged in user is returned . 4. Return Get Items Results in Respond to PowerApps Action as a TEXT STRING 5....
Simplify Power Automate by AVOIDING Apply to each where possible, use expression instead.
Переглядів 308 місяців тому
1. In Power Automate when using Get Items to knowingly return a single item 2. We try to AVOID nesting the follow up action for the items returned in an Apply to each action when a single item is returned 3. Use and expression instead: first(outputs('Get_items')?['body']?['value'])?['ID'] or outputs('Get_items')?['body']?['value'][0]?['ID']
Add Scripts, HTML and CSS tor SharePoint Online Modern Pages
Переглядів 1,3 тис.8 місяців тому
⦁ 1. Ability to add js, html and css to SharePoint MODERN PAGES similiar to SharePoint CLASSIC SCRIPT EIDTOR WEBPART or linking a source to CLASSIC CONTENT EDITOR WEBPART ⦁ 2. Using the React-Cherry-Picked-Content SPFX solution, visit github.com/PathToSharePoint/React-Cherry-Picked-Content THANK YOU ⦁ 3. Setup ⦁ learn.microsoft.com/en-us/sharepoint/dev/spfx/set-up-your-development-environment ⦁...
Best Ever SharePoint / Power Automate Approval Workflow, Conditional Columns in form.
Переглядів 2258 місяців тому
This solution is : 1. an Approval Workflow 2. that locks an item while it is been approved 3. will place the item in an editable state if rejected 4. keep the item locked if approved 5. hide/show columns that are not to be seen when item is being created context : Leave Request 2 users: ⦁ AS is the admin user ⦁ U is the normal user
Hide/Show field in a SharePoint list form depending on whether you are creating or viewing/editing
Переглядів 69211 місяців тому
A solution for displaying/hiding a SharePoint list column based on whether you are creating a list item OR if you are viewing/editing a list item. This video does not cover the permissions aspect. Steps: 1. Create a conditional text column. This column must have a default value. 2. Create the column that must conditionally appear depending on whether a user is creating and item OR viewing/editi...

КОМЕНТАРІ

  • @Sons_of_Eden
    @Sons_of_Eden 28 днів тому

    Great video! Thank you! 👍

  • @bafak1090
    @bafak1090 Місяць тому

    Hi, thank you for this video. this what i needed. can you help with how to make setting for: Users can only see their own input data, can see each other user. thank you

  • @erinryan5135
    @erinryan5135 10 місяців тому

    Does this work when using content types on your list? I have not had any luck!

    • @TECHNOLOTREE
      @TECHNOLOTREE 8 місяців тому

      What you could do is use dependency columns that are you unique to each content type, so you won't affect other content types in the list. I was unable to restrict a condition to a specific content type column(used in other content types) only on a list that has multiple content types unfortunately

  • @afaik190
    @afaik190 10 місяців тому

    Finally, i thought searched the entire internet for this but i clearly didn't. Thanks upon Thnaks