Part 1: Power Apps with Excel, creating tables, lookup columns, and changing column types

Поделиться
HTML-код
  • Опубликовано: 24 янв 2025

Комментарии • 83

  • @amitabhphatak
    @amitabhphatak 11 месяцев назад +2

    This is what i wanted. To filter the vertical gallery. Thanks!

    • @andrewhess123
      @andrewhess123  11 месяцев назад

      Excellent! Thanks for watching!

  • @ninjacatg6423
    @ninjacatg6423 2 месяца назад +2

    Amazing video bro! I've been struggling with PowerApps , and this video was very helpful! Thank you so much, you've earned a new sub! And I will continue learning with the rest of your videos.

    • @andrewhess123
      @andrewhess123  2 месяца назад

      Nice! This is an old one but a good one 😀 been asked to remake it. May do that soon, probably next month

  • @mahirazabin1212
    @mahirazabin1212 Год назад +1

    This tutorial literally taught me so much!! Exactly what I needed! Thank you loads!!

  • @CarlosSoares-yb8mp
    @CarlosSoares-yb8mp 10 месяцев назад +1

    Great, my friend! You explain exactly I need! Many thanks!

  • @SkMustafijurrahaman786
    @SkMustafijurrahaman786 6 месяцев назад +1

    Awesome. You just fulfilled my criteria. Thank you ❣

    • @andrewhess123
      @andrewhess123  6 месяцев назад

      Nice perfect! Hope you crush your goals!

  • @MysteriousUniversePath
    @MysteriousUniversePath 2 года назад +1

    Wow great 😊 looking for this type of contents, thank you so much!!! For answering my question. It's great knowledge share thanks again !!!💞💞

    • @andrewhess123
      @andrewhess123  2 года назад

      Awesome Manjunath! Glad it is helpful!

    • @MysteriousUniversePath
      @MysteriousUniversePath 2 года назад +1

      @@andrewhess123 waiting for upcoming parts !!🤠🤠🙏🙏🙏😍😍😍

  • @pinghwakuang4046
    @pinghwakuang4046 6 месяцев назад +1

    Very very good video. Thank you so much!!!!!

  • @GofherEstomihiSiregar
    @GofherEstomihiSiregar 10 месяцев назад +1

    thank you, you're so helpful

  • @KannadaHollywoodTimes
    @KannadaHollywoodTimes 2 года назад +2

    This is what something i wanted!! 😎 Thanks for making this video.

  • @dillep6989
    @dillep6989 6 месяцев назад +1

    Superb explained.. Thank you sir.. Me beginner able to understand.

  • @victorherreraguzman5014
    @victorherreraguzman5014 Месяц назад +1

    Thanks a lot man. I took a course on another Plattform, paid, with a 5 hour content; and I feel this 15 minute viddeo gave me more knowledge than that one.
    Great content, great way to explain things; new sub here.
    Question: do you have any online courses?

    • @andrewhess123
      @andrewhess123  Месяц назад +1

      Interesting, did they teach you dataverse right away? I'm thinking of working on some courses now.

    • @victorherreraguzman5014
      @victorherreraguzman5014 Месяц назад

      @@andrewhess123 they explained some of the major topics of what it is and how to connect to each one, but they only worked there with lists.
      Actually I found you because I'm trying to work on an app that uses excel as a reference and I've been struggling to make a search bar filter and referencing the columns. If you could deepen a little bit over that (formulas/functions), it would be great.

  • @vegaboy2003
    @vegaboy2003 2 месяца назад +2

    Thank you for good tutorial, why in my excel the date is 1 hour before? Thank

    • @andrewhess123
      @andrewhess123  2 месяца назад

      Most likely you are 1 hour away from UTC time? Thanks for watching vega

  • @jametjm1802
    @jametjm1802 11 месяцев назад +1

    May I ask you about picture , I use to add [image] in header and power app change data type into picture,
    when I do it with other power app, this time do not convert. Could u have recommend??

    • @andrewhess123
      @andrewhess123  11 месяцев назад

      Hi Jametjm, I am a little confused with your question?
      How to add image to Excel?

    • @jametjm1802
      @jametjm1802 11 месяцев назад

      I'm connect table inexcel in Sharepoint / Onedrive with Power app. In the header of table, I add [image] such as Header is Figure >> Figure [image]. In power app, it will see data type like picture and it will keep url in excel and picture's kept in created automate folder in onedrive. My point is Excel in Onedrive almost completed everytime but sharepoin cannot. Do u have recommend?

  • @maheshraghuvar1692
    @maheshraghuvar1692 2 года назад +1

    😳😳 wow!! I was looking something like this from last 3 days finally got it 😇😇

    • @andrewhess123
      @andrewhess123  2 года назад

      Great! Thank you for watching Mahesh!

  • @andrewcrompton3444
    @andrewcrompton3444 5 месяцев назад +1

    Excellent! I've been having some problems with this, and you make it all so easy! Thank you!
    A question. In your gallery (around the 14 minute mark) you display Completed as a text value. Suppose we wanted to replace this with a checkbox. I would have expected that PowerApps would automatically translate the Excel values TRUE / FALSE into booleans, so the checkbox could directly reference ThisItem.Completed. But this does not work for me.

    • @andrewhess123
      @andrewhess123  5 месяцев назад

      Hi Andrew, It would be possible to use a checkbox instead of the true/false text value. Most likely in the "Checked" property of the Checkbox you could write and if statement, If(ThisItem.Completed="true",true,false). This is also going to depend on if the checkbox is modern or not. But the reason is from excel it doesn't know it's a boolean value, it believes its a text value, thats why you use the " ".

    • @andrewcrompton3444
      @andrewcrompton3444 5 месяцев назад +1

      @@andrewhess123 Hi, Andrew. Thanks for the reply. You are right: the checkbox works correctly when I get it to treat the Excel data as text, in the way you describe. I have tried using both modern and classic checkboxes: the behaviour is the same.
      I have also built a form in the app in order to edit the Excel data. Here, it is possible to simply submit the form using the value of a checkbox, without having to translate it into text. In this case, Powerapps does the translation automatically.
      It would be useful if MS were to make it so we did not need to treat the Excel data as text when reading it. Maybe they'll do that in due course.

    • @andrewhess123
      @andrewhess123  5 месяцев назад

      @@andrewcrompton3444 Nice glad you got it working!

  • @danishhazim5127
    @danishhazim5127 4 месяца назад +1

    i have a question: how can I add data from the input boxes in Power Apps into Excel? is it possible? if so thank you for responding

    • @andrewhess123
      @andrewhess123  4 месяца назад

      It's possible but Power Apps needs a Table Name in Excel to write to.

  • @tulanlan3090
    @tulanlan3090 Год назад +2

    I am making an app for my thesis and creating some filters using Cascading dropdown based on the first filter but I can not export those to an Excel file. How can I solve this ?

    • @andrewhess123
      @andrewhess123  Год назад

      Hi Tu Lan Lan, you need to patch them most likely.

    • @tulanlan3090
      @tulanlan3090 Год назад

      @@andrewhess123 I'll take a look into that. Thanks for your advice.

  • @vidsbyme2590
    @vidsbyme2590 11 месяцев назад +1

    can power apps take information from two excel sheets to make an emailed payment letter?

    • @andrewhess123
      @andrewhess123  11 месяцев назад

      Yes 100%, so can Power Automate

  • @habibindraalivito2534
    @habibindraalivito2534 8 месяцев назад +1

    Question: when i press submit button, it said "network error when using patch function: the requested resource is locked". and btw i use onedrive spreadsheet for the databases

    • @andrewhess123
      @andrewhess123  8 месяцев назад

      My guess is the document is currently open? When you try to patch or someone has it open?

  • @diogoasenjo
    @diogoasenjo 11 месяцев назад +1

    Is there any way to edit data directly in a excel sheet inside of Power Apps? I don't want to create or edit a single value, but all the data from my table at the same time, is this possible?

    • @andrewhess123
      @andrewhess123  11 месяцев назад +1

      Possible with limitations by delegation.

    • @diogoasenjo
      @diogoasenjo 11 месяцев назад

      @@andrewhess123 do you have any video or material about ir? I have a demand here at work that honestly I don't understand.
      They want do a simulation inside a dashboard of Power BI, but they want to see an excel sheet and edit it lol. It's impossible to do it with BI, I was wondering if with Power App I was able to solve it, but the easiest way was just simply use excel xD

  • @ajayrathod7777
    @ajayrathod7777 9 месяцев назад +1

    Hi, how can we fetch value in power app text input from attached excel file

    • @andrewhess123
      @andrewhess123  9 месяцев назад +1

      Hi Ajay, you would need to connect to the data source of the excel file table, and then do a LookUp to the exact cell that you want to fetch.

    • @ajayrathod7777
      @ajayrathod7777 9 месяцев назад +2

      @@andrewhess123 will it work for attached excel file by user?

    • @andrewhess123
      @andrewhess123  9 месяцев назад +1

      @@ajayrathod7777 If you want to do something like this, probably needs to some sort of workflow by Power Automate

    • @andrewhess123
      @andrewhess123  9 месяцев назад +1

      Power Apps uses data sources, it does not take data from attachments and just have the data readily available. To do that you need to have a way for the attached data to be written to a data source. That would most likely be a workflow from Power Automate.

    • @ajayrathod7777
      @ajayrathod7777 9 месяцев назад +2

      @@andrewhess123 Thanks for your reply,does powerapp is reliable for performance can it handle users easily or it will break ?

  • @Sobec8
    @Sobec8 7 месяцев назад

    Great video Andrew. However, you did not address the date issues between Excel and Power Apps and how to overcome the UTC issue with Power Apps. Any chance you could do a follow up on this?

  • @mike9512
    @mike9512 4 месяца назад +1

    Hopefully, you still read these. You said you don't recommend Excel as a backend, but what else can I use? I'm a student just learning power apps and databases. I would love to use a database, but I'm not a business. I'm one guy storing personal data. I can't afford crazy pricing plans. Is there a better option than Excel?

    • @andrewhess123
      @andrewhess123  4 месяца назад

      SharePoint is the easiest... and if you want to explore more you can do "Dataverse for Teams". Or if you want to learn even more you can sign up for a free subscription to Azure and set up a Dev Azure SQL Server.

    • @mike9512
      @mike9512 4 месяца назад +1

      @@andrewhess123 Thank you for that quick response. I have always had an interest in computers but I'm diving into a lot of stuff that is new and overwhelming because of how many products, languages, etc... are out there. It's hard to know where to focus. Thank you for the suggestion. Take care.

    • @andrewhess123
      @andrewhess123  4 месяца назад +1

      @@mike9512 Well what do you want to learn? What's your final goal? Is it to make money? Is it to get a job? Is it to improve the world? I would start there 😀. My goal is actually just to learn, I love just learning everything it's actually a problem... 😅 Start with what is free, there's so much free content online and things you can try out.

    • @andrewhess123
      @andrewhess123  4 месяца назад +1

      @@mike9512 another suggestion is tell ChatGPT what you like to do and where you want to go.. then ask it to give you like 20 suggestions. Then find one of those and go from there 😃

    • @katisa88
      @katisa88 3 месяца назад

      ​@@andrewhess123best advice ever 😂

  • @AnandTest-n4x
    @AnandTest-n4x 8 месяцев назад +1

    Question: I am using lookup values on a update form. When I save the look up value, the value gets saved successfully but the form displays the original value instead of what is saved

    • @andrewhess123
      @andrewhess123  8 месяцев назад

      Set the Default or DefaultSelectedItem to the LookUp value? Since it is correct probably reseting the default should work.

    • @AnandTest-n4x
      @AnandTest-n4x 8 месяцев назад

      @@andrewhess123 Thank you, it worked

  • @RamiMaach
    @RamiMaach 11 месяцев назад

    Hi i made an app out of an excel file but now i want to filter the displayed data to another excel file. Can you make a video about that?

  • @saikrishnamandala7667
    @saikrishnamandala7667 Год назад

    Hi Sir, Is it possible to create a ticketing system using Power Apps? If yes, could you please show a demo

  • @RajYadav-e2f
    @RajYadav-e2f Год назад

    Hi, need your help, how users of power apps can upload Excel and system save data in share point according to their respective head, I have prepared power automate flow but it's not allowed to upload Excel, it saves data from Excel with provided location

    • @andrewhess123
      @andrewhess123  Год назад

      Hi, Use an attachment in a SharePoint list, or here is more examples: www.matthewdevaney.com/power-apps-easiest-way-to-upload-files-to-a-sharepoint-document-library/

  • @samuel-tj4pe
    @samuel-tj4pe Год назад +1

    hey can you do a video where you show how to search excel data and the app gives you all the other data from the row

    • @andrewhess123
      @andrewhess123  Год назад +1

      Hi Samuel, Yes I can most likely do that. There are some limitations using Excel and Search but can we can talk about that too.

  • @mohamedawad1299
    @mohamedawad1299 Год назад +1

    Good

    • @andrewhess123
      @andrewhess123  Год назад

      Thank ya Mohamed!

    • @mohamedawad1299
      @mohamedawad1299 Год назад

      How to place the Add Image button. When pressed, the gallery on the phone opens, the image is selected, and it is linked to the Excel sheet Thanks in advance

  • @rasheedahmad1449
    @rasheedahmad1449 Год назад +1

    How to auto genrated id

    • @andrewhess123
      @andrewhess123  Год назад

      You would have to do a LookUp on the largest id and then use the next id, but I would not recommend doing this in Excel, I would use SharePoint at very least to do autogenerated IDs. Else you could probably just do it on the Excel side, it is a table you could auto generate in Excel

  • @HitZero444
    @HitZero444 Год назад +1

    You indicated that excel is not usually recommended as a backend, why is that?

    • @andrewhess123
      @andrewhess123  Год назад +1

      Hi Hit, there are limitations with Excel, it is not a relational database. Delegation issues. Excel is the lowest form of a datasource for Power Apps/Power Platform. You lose on security, not as much version history. It's easier for people to break the connection by changing column titles or removing titles. People can break a whole powerapp by accidently moving an excel file. The main reason though, to use Excel is most people know Excel.
      If you get can get your users out of Excel to SharePoint, thats a plus, if you can get your users out of SharePoint to Dataverse or SQL that is even better.. but then you have to think about $$$

    • @HitZero444
      @HitZero444 Год назад +1

      @andrewhess123 great info, thank you for clarifying!

  • @B2BEnergy
    @B2BEnergy 4 месяца назад +1

    Mate please slow this down it’s good !

    • @andrewhess123
      @andrewhess123  4 месяца назад

      Should I recreate this with a new video?

    • @B2BEnergy
      @B2BEnergy 4 месяца назад

      @@andrewhess123thank you, I actually got most of it but it was the part you did the look-up. I just can’t get my Look-ups working. I’ve used the Drop Down for the simple list. But I have a Country List of 195 which really needs a Look-Up could you just do a video for creating a Look-up for Countries- please

    • @Vivian.something
      @Vivian.something 3 месяца назад +1

      @@andrewhess123yes! This is a great video, but I would love a slower, updated version!

    • @andrewhess123
      @andrewhess123  3 месяца назад +1

      @@Vivian.something Ok, I can write that down. With my newer videos I've been getting better at that. Thanks Vivian