WeTechCareOfYou
WeTechCareOfYou
  • 170
  • 920 202
PowerApps - Search box and dropdown filter for results in gallery
This video shows step by step how to create a list of results with a live search filter and live filter dropdown on the data. The table populates with test customer data and you can type the customer name which will filter on the results or select the country in a combobox which will filter to the selected country.
Code Used:
Distinct:
Distinct(TestVendorsCol, Country)
Gallery Items:
If(
IsBlank(TextInput2.Text) And IsBlank(ComboBox2.Selected.Value),
Sort(TestVendorsCol,Name,SortOrder.Descending)
,
IsBlank(TextInput2.Text) And !IsBlank(ComboBox2.Selected.Value),
Filter(TestVendorsCol, Country = ComboBox2.Selected.Value )
,
!IsBlank(TextInput2.Text) And IsBlank(ComboBox2.Selected.Value),
Filter(TestVendorsCol, StartsWith(Name, TextInput2.Text) )
,
!IsBlank(TextInput2.Text) And !IsBlank(ComboBox2.Selected.Value),
Filter(TestVendorsCol, StartsWith(Name, TextInput2.Text) And Country = ComboBox2.Selected.Value )
)
Hey welcome to WeTechCareOfYou!
If you are a returning subscriber we wish to say thankyou!
If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If you would like to discuss a project or require set hours for development, support or maintenance then please email Admin@WeTechCareOfYou.com or complete a form here: wetechcareofyou.com/contact/
We're also happy to introduce you to a selection of products that have been instrumental in transforming and optimizing our business. As a valued visitor/member of our network, we believe these tools could greatly benefit you too. We've joined the affiliate program to provide you with access and potential discounts:
✅Express VPN - Get a 30-Day Money Back Guarantee with our link.
A VPN (virtual private network) is the easiest and most effective way for people to protect their internet traffic and keep their identities private online. When Express VPN is switched on, your internet traffic goes through an encrypted tunnel that nobody can see into, including hackers, governments, and your internet service provider:
👉 click.linksynergy.com/fs-bin/click?id=hPnKNOblu9k&offerid=907611.6&type=1&subid=0
✅Microsoft 365 Business Basic - This license is perfect if you are starting from scratch, with low costs you can have Teams, OneDrive, SharePoint and Exchange to fully operate with communication, collaboration and storage:
👉 click.linksynergy.com/fs-bin/click?id=hPnKNOblu9k&offerid=1321193.36&type=3&subid=0
✅Microsoft 365 Business Standard - This license is the next step up from Business Basic and gives access to a lot more Microsoft 365 apps including the Microsoft suite of Word, Excel and PowerPoint:
👉 click.linksynergy.com/fs-bin/click?id=hPnKNOblu9k&offerid=1321193.12&type=3&subid=0
*Please note the above links provided are affiliate links, which means we may earn a commission from any purchases. We have personally selected these products based on their value to WeTechCareOfYou, and we believe they can benefit you as well.
Kind Regards,
The WeTechCareOfYou Team 💙
Переглядів: 60

Відео

Power Automate - The name cannot end with a whitespace character or a full stop (.) character
Переглядів 1102 місяці тому
This video shows how to fix the issue "Flow save failed with code InvalidWorkflowTriggerName and message 'The provided workflow run action name is not valid. The name cannot end with a whitespace character or a full stop (.) character." when saving a Power Automate flow. Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, ple...
SharePoint PowerShell - The term Get-PnPSubWeb is not recognized ...
Переглядів 1812 місяці тому
This video shows a possible workaround when trying to run Get-PnPSubWeb and getting the error: The term 'Get-PnPSubWeb' is not recognized as the name of a cmdlet, function, script file, or operable program. Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have a...
Connect PnPOnline Issue - Identity Client Runtime Library (IDCRL) did not get a response
Переглядів 2803 місяці тому
This video shows a possible workaround for the issue Identity Client Runtime Library (IDCRL) did not get a response from the Login server. Command used: Connect-PnPOnline https:yoursharepoint.sharepoint.com -UseWebLogin Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. ...
Power BI - Sum not showing for x axis value
Переглядів 1754 місяці тому
This video shows a possible solution to make "Sum" available for your added filter. Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If you would like to discuss a proj...
Microsoft Stream - Delete Stream Video
Переглядів 2354 місяці тому
This video shows how to delete a Microsoft Stream video. Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If you would like to discuss a project or require set hours fo...
PowerApps - Sharing app issue, share panel does not open when clicking share
Переглядів 1245 місяців тому
This video shows a workaround to a bug that occurs in PowerApps when clicking share. This workaround shows how to open the share panel when this issue happens. Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leav...
PowerApps - Copy / Clone a Canvas App
Переглядів 4,1 тис.5 місяців тому
This video shows how to copy/ clone a powerapp Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If you would like to discuss a project or require set hours for developm...
Dataverse - How to see created date of a Dataverse Table
Переглядів 1145 місяців тому
This video shows how to find the created date of a Dataverse table. Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If you would like to discuss a project or require s...
Power Automate - Get last month / Previous month
Переглядів 6645 місяців тому
This video shows how to get the last month from current date. Expressions used: addToTime(utcNow(), -1, 'month', 'MM/yyyy') addToTime(utcNow(), -1, 'month', 'MMM') Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just ...
Power Automate - Add 2 numbers together add function
Переглядів 5496 місяців тому
This video shows how to add 2 integers/numbers together. Code Used: add(variables('number1'),variables('number2')) Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If y...
Power Automate - Array Elements can only be selected using an integer index
Переглядів 2667 місяців тому
This video shows how to fix the error Array Elements can only be selected using an integer index when trying to pull an array from Parsed JSON. Code used in video: body('Parse_JSON')?['Reports']?[0]?['Rows'] Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have ...
SharePoint - Set Global Navigation for Home site with new Viva Connections way
Переглядів 5097 місяців тому
This video shows how to change the Global Navigation to match the navigation on your Home site. Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say thankyou! If you are new to the channel, please subscribe as we release a new video every week. If you have any questions around our videos please just leave a comment and we will get back to you. If you would like to di...
PowerApps Invoice Generator - Save Invoice for later - App Overview
Переглядів 7668 місяців тому
This video is an overview of the save for later functionality added to our PowerApp Invoice Generator. You can purchase the app demonstrated in the video for $29.99 USD here: www.upwork.com/services/product/development-it-microsoft-powerapps-invoice-generator-app-and-dashboard-1597189091273469952?ref=project_share Hey welcome to WeTechCareOfYou! If you are a returning subscriber we wish to say ...
PowerShell - Import Module cannot be loaded because running scripts is disabled on this system
Переглядів 2198 місяців тому
This video shows how to fix the PowerShell issue: Import-Module : File "" cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170 The link to the documentation shown in the video is here: learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_execution_poli...
PowerApps - Get Sum of SharePoint list / Collection column
Переглядів 3,9 тис.8 місяців тому
PowerApps - Get Sum of SharePoint list / Collection column
Microsoft Outlook - Change Theme Colour
Переглядів 3118 місяців тому
Microsoft Outlook - Change Theme Colour
Invoice Generator - Unit to calculate price - Enhancement 1
Переглядів 1909 місяців тому
Invoice Generator - Unit to calculate price - Enhancement 1
Power Automate - Compare current date against date value from SharePoint list
Переглядів 5 тис.10 місяців тому
Power Automate - Compare current date against date value from SharePoint list
Rename SharePoint site URL - Microsoft SharePoint
Переглядів 88410 місяців тому
Rename SharePoint site URL - Microsoft SharePoint
Microsoft Forms - Change Date Format using Chrome
Переглядів 2,4 тис.10 місяців тому
Microsoft Forms - Change Date Format using Chrome
Power Automate - Parse JSON Error - Invalid type. Expected String but got Null
Переглядів 2,6 тис.11 місяців тому
Power Automate - Parse JSON Error - Invalid type. Expected String but got Null
PowerApps - Show Hide button if User is in Office 365 Group
Переглядів 1,4 тис.11 місяців тому
PowerApps - Show Hide button if User is in Office 365 Group
Enable Geospatial Controls in your Environment Power Platform Admin Center
Переглядів 7011 місяців тому
Enable Geospatial Controls in your Environment Power Platform Admin Center
SharePoint List or Library - Remove out of box flow Request sign off
Переглядів 41211 місяців тому
SharePoint List or Library - Remove out of box flow Request sign off
Power Automate - Copy File between SharePoint Document Libraries
Переглядів 1,2 тис.Рік тому
Power Automate - Copy File between SharePoint Document Libraries
Error fix for Power Automate - Calculate First Business Day of Month
Переглядів 220Рік тому
Error fix for Power Automate - Calculate First Business Day of Month
Power Automate - Get Value of Dataverse Choice Column
Переглядів 6 тис.Рік тому
Power Automate - Get Value of Dataverse Choice Column
PowerApps - Form error "No item to display"
Переглядів 13 тис.Рік тому
PowerApps - Form error "No item to display"
Install Microsoft Office Apps from existing M365 License Word, Excel, Outlook
Переглядів 54Рік тому
Install Microsoft Office Apps from existing M365 License Word, Excel, Outlook

КОМЕНТАРІ

  • @deepanshsaxena5677
    @deepanshsaxena5677 12 годин тому

    Thanks! I have situation where I have to transfer multiple flows ownership to a different user. I am thinking to do it by writing Power Automate flow. Do you have it with you? Thanks once again.

  • @basehumax
    @basehumax День тому

    Thanks

    • @WeTechCareOfYou
      @WeTechCareOfYou День тому

      Hey basehumax, thankyou for the comment and thankyou for all of your support!

  • @MAG.experiences
    @MAG.experiences 3 дні тому

    Quality of your video is pathetic

  • @sophyalex4294
    @sophyalex4294 3 дні тому

    Thank you. It was really helpful

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 дні тому

      Hey sophyalex4294, thankyou for the great comment! Happy it helped.

  • @F_o_f_o
    @F_o_f_o 4 дні тому

    I have a sharepoint list and an empty power apps canvas with 2 screens for the moment, I want to make with first screen to make add, delete and modifications options (using buttons) , another screen to make only queries. are there any examples where I can guide myself? thanks in advance.

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 дні тому

      Hey Fofo, Thankyou for the comment. You can use a form and list to submit records for your first screen by following this video: ua-cam.com/video/VydyWFi-sKI/v-deo.html For the screen to read data and query, you can see this video: ua-cam.com/video/Sw_M81MmVeE/v-deo.html

  • @davehouser1
    @davehouser1 4 дні тому

    Thanks, this also works for OneDrive "List all files"

  • @arlinddude
    @arlinddude 8 днів тому

    I am curious. Why use the initialize variable action when you can just trigger the recurrent flow, get item, apply condition of status=ordered and then send mail?

    • @WeTechCareOfYou
      @WeTechCareOfYou 7 днів тому

      Hey arlin, thankyou for the comment. That is a great suggestion and will also work. The example is how to use a do until loop so it's not specific for every situation, but if you did need to use a do until in a certain situation this is a method to do it. There are many ways the requirement can be achieved and this is just one. I agree your approach is very good also

  • @aymericfaucheux9228
    @aymericfaucheux9228 13 днів тому

    saves my day! Thanks so much!

    • @WeTechCareOfYou
      @WeTechCareOfYou 12 днів тому

      Hey aymeric thankyou for the great comment appreciate it!

  • @pferdewurst55_15
    @pferdewurst55_15 13 днів тому

    I did it like you but somehow only the title is written into the list. The description is not saved. What may be the problem?

    • @WeTechCareOfYou
      @WeTechCareOfYou 12 днів тому

      Hmmm, are you using submit form? Please check the "Update" property of the datacard is pointing at correct description box

    • @pferdewurst55_15
      @pferdewurst55_15 12 днів тому

      ​@@WeTechCareOfYou Yeah, I created a new app and followed your steps. I added another column "date" and it is being saved too. Only the description is not saved.

    • @pferdewurst55_15
      @pferdewurst55_15 12 днів тому

      @@WeTechCareOfYou Nevermind, now it works, I didn't change anything. Nevertheless, thank you for your quick response 🙂

    • @WeTechCareOfYou
      @WeTechCareOfYou 9 днів тому

      Hey sorry for the late reply but great to hear it worked!

  • @AlabaUmukoro
    @AlabaUmukoro 19 днів тому

    You are my hero. Approached worked efficiently. I wish I found your video earlier rather than those using flows or first getting IDs with the Set function and then patching an empty form with LookUp and Form.Updates.

    • @WeTechCareOfYou
      @WeTechCareOfYou 15 днів тому

      Hey Alaba, thankyou for the wonderful comment. Happy it helped you :D

  • @wilsonsony
    @wilsonsony 20 днів тому

    Hi, can you please provide the workaround for non-solution flow?

    • @WeTechCareOfYou
      @WeTechCareOfYou 19 днів тому

      hey wilson, if you go to the flow you should now have the option "set primary owner"

    • @wilsonsony
      @wilsonsony 19 днів тому

      @@WeTechCareOfYou it grey out, i can't change it. this is what it say under " Primary owner: This is a non-solution flow. The owner cannot be changed. "

  • @jray1429
    @jray1429 22 дні тому

    You did a great job, thanks for sharing!

    • @WeTechCareOfYou
      @WeTechCareOfYou 22 дні тому

      Hey thankyou for the great comment! Happy it helped :D

  • @dikshyashrestha8231
    @dikshyashrestha8231 25 днів тому

    Hi, the attachment from SharePoint List isn't syncing in the power app form, how do I fix this?

    • @WeTechCareOfYou
      @WeTechCareOfYou 22 дні тому

      hello, is this when submitting a new form or wanting to see an existing form?

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

    How do I do this is i am using an azure table and NOT a sharepoint list. My source doesnt come up to select

    • @WeTechCareOfYou
      @WeTechCareOfYou 25 днів тому

      Hey Jordan, apologies for the late reply this comment did not show in my list :/ Do you still require assistance with your issue?

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

    Double quotes is what I was missing all along!

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

      Hey Keith, thankyou for the comment, happy you figured it out this gets me every time!

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

    thanks

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

      thankyou for the comment hs i hope it helped :D

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

    It returns a blank value. has there been an update to this feature or something?

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

      hey rorsara, i just ran the flow again and it worked as it should. Please test multiple times and make sure the row saves in dataverse

  • @DeepDeep-zd5jq
    @DeepDeep-zd5jq Місяць тому

    Hello if another user login in to that canvas app and click on button then email sent from that loged in user right? not from the user which connection reference used in Outlook connector?

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

      Hey DeepDeep, yes thats correct the email will come from the user clicking. You will notice in the "send an email" step in power automaye, there is also a field called "Send As" which you can specify the email to come from.

    • @DeepDeep-zd5jq
      @DeepDeep-zd5jq Місяць тому

      @@WeTechCareOfYou Yes but if we use send as a field then we need permission to send an email on behalf of that user. Without using this field is this possible to send an email from the logged in user who clicked on the button?

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

      @@DeepDeep-zd5jq yes it should come from the user who triggered it if you try it leaving the send as field blank. I just tested this in my development tenant. I setup a flow with user 1 to send an email to me, i triggered the flow from user 2 and the email that sent to me came from user 2.

    • @DeepDeep-zd5jq
      @DeepDeep-zd5jq Місяць тому

      @@WeTechCareOfYou Yes actually it's happening in our Canvas app also like it's takes logged in user email id as from but connection reference is form different user and I don't have clarification for that ..because if you try with other trigger like when item created on share point or adding modifying record in datavers and then you try to send email it takes from email id of that connection reference. Can we have something for this if it takes the email id of that user who created or modified that record?

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

      @@DeepDeep-zd5jq yes you can add the "Created By Email" or "Modified By Email" into the "Send As" field in the send an email step. For this to work you will need to delegate permissions of the account shown here: www.technologytobusiness.com/microsoft-flow-logic-apps/workflow-not-authorized-account-send-email

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

    WOW! honestly i was about to give up on Power Apps until i saw this video, for months i have been scratching my head wondering why the field didnt show and in your video the exact same thing happened to you and you had a resolution straight away.! You just picked your self up another sub.

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

      Hey Greg! Amazing thankyou for the great comment and happy the video helped you! :D

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

    Thank you for being awesome. This video helped save so much time. Sometimes the little things are most deadly.

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

      Hey Ty, thankyou for the great comment and totally agree haha we all hit that same nightmare in the journey of PowerApps dev!

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

    how is this better than a powershell script ?

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

      Hey Sunny, thankyou for the comment. I still think PowerShell executes better but with Power Automate a lot of users will use this instead of PowerShell as it is easier for the end user who does not have development experience. Also it might be used in a flow where the flow does certain things that PowerShell cannot achieve

    • @sunnykgaming2541
      @sunnykgaming2541 21 день тому

      @@WeTechCareOfYou what about creating a reoccuring flow that searches for blocked users, then searches what groups they are a member of then removes them from all groups. Ive been trying to do that but have been unsucessful.

    • @WeTechCareOfYou
      @WeTechCareOfYou 19 днів тому

      @sunnykgaming2541 hmm yes ok this might not be possible. If you want to send your screenshots and approach to admin@wetechcareofyou.com and we can take a look

  • @manmohansingh-sm8dp
    @manmohansingh-sm8dp Місяць тому

    in the dynamic Content Area it doesn't showing me anything "No dynamic content available" can anyone help me with that

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

      Hey manmohan, do you mean for the power automate flow trigger? What version trigger are you using?

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

    Hi I'm new to Power apps I'm currently automatting some process in my org. Can u help me with below senario I wanted to collect feedbacks for multiple persons in a single go. Eg. In your video you have name feild but with only 1 input what i wanted is to user can be able to input 8 names at a time and same for other fields. And save each as a seperate records

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

      Hey Sanjjoy, thankyou for the comment. You can achieve this in the app or even the flow. I think best best is yo have your form in the app, then if you do a ForAll loop on your gallery.selecteditems, it will loop through all of the names. Then in each loop do a patch for that record

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

      ​@@WeTechCareOfYou thanks but can you please show me a demo am very newbie

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

      No problem, if you can please send screenshots and a detailed description of exactly what you wish to achieve to admin@wetechcareofyou.com and we can send screenshots back or even schedule a call if required

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

    Your awesome for doing this!!! I have no clue how to code and no I have a functioning app. Do you have videos on how to build a functional homepage? Goal: homepage would contain a drop down list of project numbers, this would make sure the invoices get emailed/routed to the right individual/group

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

      Hey thankyou for the great comment. Yes you can certainly add a dropdown and direct your invoice emails from this. Unfortunately we don't have a vid for this but we have a video to select customer name: ua-cam.com/video/tzm4RjouYCI/v-deo.htmlsi=wsrEnDK3EJUfqH-R

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

    Your awesome for doing this!!! I have no clue how to code and now I have a functioning app. Do you have videos on how to build a functional homepage? Goal: homepage would contain a drop down list of project numbers, this would make sure the invoices get emailed/routed to the right individual/group

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

      Hey thankyou for the great comment I just replied to the other comment

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

    Thank you for giving the formulae in the description.

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

      Hey thanks for the comment michael! Happy that helped :)

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

      Hey thanks for the comment michael! Happy that helped :)

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

    You solved my problem. Thank you so much. I was outputting from ServiceNow, and needed to send an email using Graph, but the text kept running together. Replace did not work to change the JSON (, ' ', '<br/>'). Your answer was exactly what I needed.

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

      Hey Gregz, thanks for the great comment! Happy to hear it helped I remember this was a very specific issue XD

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

    Greatly appreciate this, thank you.

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

      Hey happier, thankyou for the nice comment! Happy the video helped :D

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

    Thankyou!!! :)

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

      Hey Joe, thankyou for the great comment and happy the video helped! :D

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

    What if this is a choice column where multiple selections are allowed?

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

      hey thankyou for your comment. The values are still added the same way but it has the multiple selected values, so the raw data in the trigger will show like this: testchoicemultiple": "123200000,123200001,123200004",

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

    Very simple 👍👍👍👍

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

      Hey thankyou for the great comment! Happy the video helped :D

  • @Orlandolover01
    @Orlandolover01 2 місяці тому

    Perfect, thank you so much. very short and to the point! and easy to follow.

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey Orlando, thankyou very much for such a great comment. Really happy our video is providing value! Thanks for supporting the channel!

  • @MichaelHollowell123
    @MichaelHollowell123 2 місяці тому

    Thank you much appreciated

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey Michael, thankyou for the great comment! Happy the video helped

  • @kevkeisha
    @kevkeisha 2 місяці тому

    Thank you for sharing! This is great stuff! In addition to generating a PDF. Is it possible to generate a CSV with the same invoice data?

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey Kev, thankyou for the comment. In power automate you can certainly add the data to csv using the excel connector, however you cannot add nice design and it will look a lot different so it will just be an output of data

  • @cloudbaud7794
    @cloudbaud7794 2 місяці тому

    awesome tutorial!!!

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey cloud, thankyou for the great comment! Happy that it helped :D

  • @ivycarter2536
    @ivycarter2536 2 місяці тому

    What if one of the numbers is zero? I'm having trouble with one of my flows that pulls answers from a form.

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey Ivy, please send a screenshot of your error to admin@wetechcareofyou.com and we will take a look

  • @JanBorghs
    @JanBorghs 2 місяці тому

    Wow, so easy! I've been watching hours and hours of @odata things etc, couldn't get it to work. Thank you so much!

  • @caiquebarreto6498
    @caiquebarreto6498 2 місяці тому

    quick and effective!

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey thankyou for the great comment! Happy it helped :D

  • @Soulebi03
    @Soulebi03 2 місяці тому

    now the problem for this is after submission it will display to No items to display.

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey Soule, after your submitform function, try using ResetForm and NewForm functions

  • @johnpaul0647
    @johnpaul0647 2 місяці тому

    Very helpful indeed. Much appreciated!

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey John Paul, thankyou for the great comment! Happy it helped :D

  • @p0001076
    @p0001076 2 місяці тому

    Thank you so much! You made my day 😊

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey p000, thankyou for the great comment you made my day also :D happy the video helped!

  • @juanjosenunezcarreno
    @juanjosenunezcarreno 2 місяці тому

    Thanks

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey Juan, thankyou for the comment! Happy it helped :D

  • @Argentinian
    @Argentinian 2 місяці тому

    Its giant... enormous... if u want to use it in a sharepointintegration form its a bit uncomfortable.

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      hey thankyou for the comment, yes unfortunately there is not much we can change for that date picker :( you can possibly use multiple comboboxes so the user pickers a dropdown for day, a dropdown for month etc

  • @AisakaJam
    @AisakaJam 2 місяці тому

    Hello, I've successfully created the flow and everything you showed in the video. But do I have to update or duplicate the birthday manually so that it will reflect on the calendar every year?

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Heu Aisaka, no this will automatically do it. When it lands on a person's birthday, it creates the next year and deletes the current year so you don't have to maintain the list at all :)

  • @LearningLabyrinthbyKimEdwards
    @LearningLabyrinthbyKimEdwards 2 місяці тому

    Id love to able to know what theme slots have been applied where on a template, so that I can decide what slot I want to add.

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hello and thankyou for your comment. As this is an older way to apply the theme there are certainly other ways and worth researching the different types of templates. Great suggestion!

  • @RussWilgus
    @RussWilgus 2 місяці тому

    I'm getting an error related to " Form1.Updates " It's saying that " Name isn't valid. 'Updates' isn't recognized " any ideas?

    • @WeTechCareOfYou
      @WeTechCareOfYou 2 місяці тому

      Hey Russ, please send a screenshot of your code where the error is to admin@wetechcareofyou.com and we will take a look.

  • @remenence
    @remenence 3 місяці тому

    Now i need to know how to make it so I can assign certain parts of the form to someone, before posting the final result to SharePoint List

    • @WeTechCareOfYou
      @WeTechCareOfYou 3 місяці тому

      Hey Remenence, thankyou for the comment. There are so many ways this can be achieved. You can use approvals in flow for an out of the box approach for each person to complete and confirm. Or you can build a custom powerapp to handle Permissions and triggers for the users and their sections. Unfortunately we do not have this exact video I'm sorry.

  • @PabloAlvarez-h2j
    @PabloAlvarez-h2j 3 місяці тому

    Ran around looking for a solution to this for forever, and you really fixed it in less than 10 seconds for me. Thank you!

    • @WeTechCareOfYou
      @WeTechCareOfYou 3 місяці тому

      Hey Pablo, thankyou for the comment and happy it helped :D

  • @lucapiu
    @lucapiu 3 місяці тому

    Thank you!!! really helped me with this one!

    • @WeTechCareOfYou
      @WeTechCareOfYou 3 місяці тому

      Hey Luca, thanks for the comment! I'm happy it helped, this definitely gave me a headache also :D

  • @F_o_f_o
    @F_o_f_o 3 місяці тому

    i have a menu left like a component , then I did some screen . after that I created a button but when I run app the button doesn't appear , run edit yes , but not work.. I am a newbie sorry and my english is bad.. can you give me a advice or tips , thx in advance

    • @WeTechCareOfYou
      @WeTechCareOfYou 3 місяці тому

      Hey Fofo, thankyou for your comment. Please send screenshots to admin@wetechcareofyou.com and we will take a look

    • @F_o_f_o
      @F_o_f_o 3 місяці тому

      @@WeTechCareOfYou Done , thanks in advance