Creating Multi-Step Forms in Power Apps | Tutorial

Поділитися
Вставка
  • Опубліковано 5 жов 2024

КОМЕНТАРІ • 154

  • @sankhlayashraj
    @sankhlayashraj 5 місяців тому +7

    Dear @Reza. I built a similar app for a hackathon project with similar thought process last week. Went down the memory lane of what I did… Thank you for making such wonderful videos

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      Most welcome and glad to know you built something similar

  • @melron9254
    @melron9254 5 місяців тому +3

    Great job, Reza! You consistently make the difficult cases seem straightforward! I was working on this scenario (a bit different) a few days ago and ended up with a kind of 'enum' (records) for better control in 'if' cases. For example:
    Set(
    FormSteps,
    {
    Travel_Info: {Value: 1, Name: "Travel Info"},
    Travel_Details: {Value: 2, Name: "Travel Details"},
    Airface_Hotel: {Value: 3, Name: "Airface / Hotel"},
    Attachments: {Value: 4, Name: "Attachments"}
    }
    );
    Then, all you need to do is use Set(FormStep, FormSteps.Travel_Info.Value) and so on.
    I'm eager to vote for that at your channel! Thanks for sharing Reza!

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      Thanks for sharing!
      Various ways to do this. Goal was to keep it simple for the video.

  • @GeneRice
    @GeneRice 5 місяців тому +1

    Well done, sir! Such an elegant solution to a problem I've been wrestling with for some time now. Thank you!

  • @milanthapa281
    @milanthapa281 5 місяців тому +1

    Hi Reza, I've been following you for a very long time. Your content is always helpful and easy to grasp. Could you please create some content on CoE or courses for Power Platform CoE? Thanks!

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Thanks so much!
      I want to make videos on a lot of topics. However, my rule for making videos is set.
      “I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted idea gets added to my backlog. Make sure to post this idea whenever I post the next topic suggestion post“

  • @MegaKumar0
    @MegaKumar0 5 місяців тому +1

    Wonderful technique for multi steps form Reza!. Thank you for your valuable time to educate & make it easy.

  • @dougydoe
    @dougydoe 5 місяців тому +1

    Great technique for creating Multi-Step Form. Certainly another tip to add to my armoury for subsequent projects. Thanks for sharing.

  • @DomiAbou
    @DomiAbou 5 місяців тому +1

    Very elegant process, and code minimized ! thanks Reza!

  • @frenamakenson9844
    @frenamakenson9844 3 місяці тому +1

    thx for sharing , nice tips with the submit form for non validate field

  • @exe5933
    @exe5933 5 місяців тому +3

    Great video, one small issue - notice how when there's a validation on the first step of the form, all the fields are validated and once you go to the next step, there already are error messages displayed even though the user didn't choose anything yet. Is there a way around it?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      I have not found a way around that. Little bit of give and take.

    • @Asenay999
      @Asenay999 4 місяці тому

      @exe5933 Did you find any solution for that? Im on the same boat buddy!

    • @exe5933
      @exe5933 4 місяці тому

      @@Asenay999 Yeah, found like yesterday although it's not perfect, sorry for not answering - for each step I have a label which value is set to a global variable - everytime I validate the form fields using the "if" statements like that:
      If(
      (!IsBlank(DateValue1.Value) && !IsBlank(DateValue2.Value) &&
      DateValue1.Value >= Today() &&
      DateValue2.Value > DateValue1.Value
      // here add more steps if needed
      ),
      Set(varStep, varStep + 1); Set(varStepValidation1Error, ""),
      If(
      DateValue2.Value

  • @oluwatobiyusuf
    @oluwatobiyusuf 5 місяців тому +1

    Thank you Reza for this timely video.

  • @maribelmanibo334
    @maribelmanibo334 3 місяці тому +1

    This was awesome, I was able to follow everything and get it to work! Do you have a followup video on how to surface the multi-step form for edit? When I navigate from a gallery, my first view of the completed form is missing all elements. For the "edit" arrow Onselect, to go to form I tried this but still missing the elements of my first part of multi-step form. Appreciate any advice!
    Set(VarStep,1);
    Set(varReviewForm, ThisItem);
    EditForm(ReviewForm);
    Navigate(ScreenReviewForm);

    • @RezaDorrani
      @RezaDorrani  3 місяці тому +1

      Most welcome!
      I do not have a follow up video on edit however I have done many multi form based videos where in I have shown edit functionality. I would recommend checking those.

  • @raj7sam
    @raj7sam 5 місяців тому +1

    It was superb , small tricks but very useful as always

  • @sujitdaswant5256
    @sujitdaswant5256 5 місяців тому +1

    Hi @Reza, very nice this demonstration. this will be very helpful content. Keep posting 🙂

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Thank you, I hope to keep going as long as possible

  • @ibrahimabu-awad8511
    @ibrahimabu-awad8511 5 місяців тому +1

    Thank you so much I was looking for this for a long time, amazing video. I have a question what if we have multiple content type in SharePoint list, how can we handle this?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Welcome!
      Power Apps does not understand SharePoint content types.

    • @ibrahimabu-awad8511
      @ibrahimabu-awad8511 5 місяців тому

      @@RezaDorrani Is there a workaround then?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      @@ibrahimabu-awad8511 it would require calling flow to get column details of content type and then showing or hiding columns. It can get complex quickly.

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

    Wonderful video as usual Reza. Wondering thou how can I make this change. If I select the steps in the gallery, I want it to show the relevant fields in the form. That way the user have 2 ways to navigate.

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

      Thanks!
      The video shows a gallery connected to a form.

  • @AMindGame
    @AMindGame 4 місяці тому

    Always up to date content! Thank you Reza!

  • @aducaale328
    @aducaale328 5 місяців тому +1

    Wonderful content. Thanks for these amazing content 🎉

  • @DY357LX
    @DY357LX Місяць тому +1

    Really good video. Thanks for sharing.

  • @JaswanthSainath_Garla
    @JaswanthSainath_Garla 5 місяців тому

    Once again there is a great lecture. will you please make a video on userphotometadata blank value on userid

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Welcome!
      I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted idea gets added to my backlog. Make sure to post this idea whenever I post the next topic suggestion post.

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

    Dear @Reza, how to make the button to edit a form and go to the form with all the data of that item? Do you have a video explaining this?
    Thank you for this video, it's amazing.

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

      Use same logic as view form but use the EditForm function. I have done several videos on form control. They are all placed in a playlist on my channel.

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

    Dear @Reza - I just discovered your channel today and the content is really great. This seems really elegant solution for multi step request forms. My question is, that with the check of the form at each step with the Next button - it automatically shows on the "next screen" all errors for mandatory fields even the user has not been on that page before. Is there a good solution to prevent that?

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

      Thanks so much!
      With the current pattern shown in video, there is a single form only. So it would show the mandatory validation across.

  • @gmatdakuti
    @gmatdakuti 5 місяців тому +1

    Reza the king strikes again!!! wonderful video

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Thanks so much!
      Content is King

  • @pappumahawar2893
    @pappumahawar2893 5 місяців тому +1

    It would be nice content for skills improve with new approaches...

  • @facun_OK
    @facun_OK 5 місяців тому

    Hi Community and Reza!!! amazing video and I would like to know the next... is there any recommended technique to modify the table where all items are shown to add buttons which allow editing an item?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Your question is not clear

    • @facun_OK
      @facun_OK 5 місяців тому

      @@RezaDorrani thank you for taking the time to respond and my sincere apologies for not explaining myself properly in the first place. My question is about how can I create an experience to allow user selecting an existing item from the table to view/edit, something like adding a custom card with a view/edit button as I can see from tables there is no straightforward method for it and wanted to know if there is a recommended tutorial for it. Again, thank you for the time and amazing video :)

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      @@facun_OK I did a tutorial video on table control. Try checking that.

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

    Hello reza. Thanks for this wonderful video. Question, is there a way to submit/patch these multi screens/forms to another SP list as new or update (not considering ID as primary key)? When i tried to use patch function, im getting error that record doesnt exist on another SP list. Thank you

    • @RezaDorrani
      @RezaDorrani  3 дні тому +1

      Not something I have tried or have a video reference for.

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

    Cool Video, I tried the same and its working Very well. Is there a way I can select a record in table and then edit the same.

    • @RezaDorrani
      @RezaDorrani  3 місяці тому +1

      You can use the editform function

  • @waynethompson2109
    @waynethompson2109 5 місяців тому

    Hi Reza! 🙂As of this month, If a user wished to create a new SharePoint data enabled Power Apps form, would you recommend a new modern responsive screen template with Gallery or a Table Control to list the data items?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      Gallery for now as Table control is not GA yet

  • @mw011i
    @mw011i 5 місяців тому

    This is a nice solution, thanks for sharing. When I click on an item from the table, it does not take me to the specific item in the form display--it simply stays highlighted. At the end of your video, you have created a button to "View Request". Can you explain how that works?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      Video description has link to download entire solution (members only - check description for details)
      I have not come across the mentioned issue and hence not sure what is the cause for your issue.

  • @flash4wardgaming707
    @flash4wardgaming707 4 місяці тому

    @reza great content as always!! thank you very muchi have been following your help for a while whilst continuing to improve my working platform ..... my question - is it possible to build on this experience and have the NEW initial record created by the data inputter, but then have an edit button, so that a record could be edited and step 2 and step 3 could be completed by other users??? any help would be greatly appreciated. many thanks @reza!

    • @RezaDorrani
      @RezaDorrani  4 місяці тому

      Thanks!
      I have not tried the mentioned scenario and do not have a reference video for it.
      I will recommend checking on the forums at powerusers.microsoft.com/ in case someone has done something similar.

  • @sankhlayashraj
    @sankhlayashraj 5 місяців тому

    Also Reza… I had one request for future if you can do.. in our org, we build apps where we put images on home page and other relevant pages to create a UI. I have understood that there are limitations… but if you have had an opportunity to handle it better… please share or if there is any article that can help, I would appreciate it.

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      I have no plans for a video on this topic.
      My rule for making videos is set - “I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted idea gets added to my backlog. Make sure to post this idea whenever I post the next topic suggestion post. “

  • @motisko
    @motisko 5 місяців тому

    Hey Reza! Love your videos. I want to join your channel as a premium member. But do your "gold" members really only have access to 90 days of flows and apps as mentioned in the description? I figured those you'd keep historically for that tier.

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Gold members have access to all recorded videos. Access to app and flow resources is restricted to 90 days but I am always open to re-opening specific links upon request.

  • @beingfarhan
    @beingfarhan 5 місяців тому +1

    Hi reza sir, how can I get power apps developer job as a fresher?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      I have no clue about that.

  • @nickfaulkner6161
    @nickfaulkner6161 5 місяців тому +1

    That is a novel way to use the Approval screen template.

  • @AbdinajibRoble
    @AbdinajibRoble 5 місяців тому

    Thank you @Reza - I'm currently working on similar travel authorization for our office. Would you mind adding multiple travel routes as staff can visit different locations for differnet work purposes. thank you.

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      The video idea is more around multi step forms than the use case. I don’t plan to expand on it further. Video description has link to download entire solution. Feel free to customize it based on your scenario.

  • @lisag2312
    @lisag2312 5 місяців тому

    Not sure if this is new or just appeared in our tenant, wondering if you know how to hide the "info" icon in the header. We don't want to hide the whole PowerApps header just that icon since the hover over is showing description/comments from the last published version and the created by person (not the owner) which is going to confuse end users.
    Thanks for all the videos! Very helpful for our developer community!

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Not sure what icon are you referring to.

    • @lisag2312
      @lisag2312 5 місяців тому

      In our PowerApps header we started seeing a circle with a lowercase letter i in it after updating our default tenant theme. When you hover over it the app description and created by values display which are not always relevant if this is an older app and the creator is no longer the owner.@@RezaDorrani

  • @BalaSubramanian1991
    @BalaSubramanian1991 5 місяців тому +1

    Neatly done... impressive👏👏

  • @DroneEyes
    @DroneEyes 5 місяців тому +1

    Another great video Reza!!!

  • @rameshc4498
    @rameshc4498 5 місяців тому +1

    Nice. Informative video

  • @pfenix88
    @pfenix88 5 місяців тому

    I'm a beginner, but I often feel limited by the form control. What would be the important changes to do, if I wanted to create the same experience but using patch commands instead?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      I would have to try the scenario out to know what changes would be needed. I will recommend checking or posting your query on forums in case someone has experienced something similar powerusers.microsoft.com

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

    How did you insert a header with your logo and photo? was it pre-made?

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

      Modern header control ua-cam.com/video/UEX4mXjxWOI/v-deo.htmlsi=YJ2VR1KOgef09Pjv

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

    Quick question, in this multi step form design can you edit existing record?

  • @mtamitolanga
    @mtamitolanga 5 місяців тому +1

    Great stuff!!!

  • @jesterc
    @jesterc 5 місяців тому

    Wow - a whole new way of doing things for me from now on. I have add to delete and add back fields - date fields were showing "object errors" but when I removed from Form and added back they worked. I am however left with one problem - in my list I have a Person field - and for some reason I can only pick from a 5 digit number - names not showing - I know Person fields are a pain with all the different elements to them - but I really want to use it. An alternative would be to use the name of the person completing my form to be the default for this field. Any help gratefully receveid.

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Person fields are currently not supported by modern controls. Alternative will be to use classic combo box.

    • @jesterc
      @jesterc 5 місяців тому

      @@RezaDorrani thanks

  • @MichaelDeBlasis1369
    @MichaelDeBlasis1369 5 місяців тому +1

    Very Nice! and fast

  • @sanskritisabhayta
    @sanskritisabhayta 5 місяців тому

    Hi, I m new to IT field, can you pls make a small video how to use ur project from github and can create my own. Love ❤ fro. India

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Which project?
      Now I share all my apps/flows with channel members (silver and above)
      It includes read me docs which includes steps on how to install.

    • @sanskritisabhayta
      @sanskritisabhayta 5 місяців тому

      @@RezaDorrani kanban board I m interested in which you made long time back 5 years ago...

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      @@sanskritisabhayta I have no plans to revisit content shared years ago.
      My rule for making videos is set - “I make videos when I receive multiple requests on a topic. Every 6 months I ask subscribers for topic suggestions on Community Tab of my channel. Most voted idea gets added to my backlog. Make sure to post this idea whenever I post the next topic suggestion post. “

    • @sanskritisabhayta
      @sanskritisabhayta 5 місяців тому +1

      Ok sure, anyways good work thank you... I have learned a lot from you.

  • @DKTD23
    @DKTD23 5 місяців тому

    Reza, is fhere a way to have the required fields show in red font? A lot of end-users will zip through forms like this, and not realize that they are missing required fields, without a more refined visual indicator.

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      Yes, if you notice my first screen, the require fields do show up in red font.
      The modern controls are in preview and hence not all controls show the red font currently. But you could always check the validation state of the control and accordingly show the color.

    • @Asenay999
      @Asenay999 4 місяці тому

      In every card, there is a "ErrorMessage" controller. Click on that and go to the "Style and theme", there you can edit the Font weight and color 👍

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

    Hi Reza, Had a question in SharePoint list calculated columns,
    It does not get auto update so i have made a cloud flow to auto update it
    it updates a temp column with random value so that the calculated columns get refreshed for that row, but sometimes it is working sometimes it is not, is there any solution for this?
    any workaround for it to update calculated columns on it's own, tried the json method but got no success

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

      I have done very little work with calculated columns. And certainly not tried updating it with flows.

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

    Hello @Reza.
    I have a question. I tried the multi step formand I have until varstep 6. Somehow the next button stop adding +1 to the varstep after step 3. I tried removing the submit form and it work. Anyway around this? I still want to validate the form as I move on, but I don't want the submit form function to make the +1varstep from working.

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

      I have not experienced any issues with his so not sure.

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

    FYI: Modern controls and themes is now under the updates tab, not general

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

      Thanks for sharing. There will come a time where it wont be there also and simply available right out of the box.

  • @kadirkkkk
    @kadirkkkk 5 місяців тому

    @14:25 when you hit the "View request" button how did the varStep setted to 4 and the steps list showed up all green? Did you add "set(varStep,4)" to the OnSelect property of "View request" button?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      I check formmode and accordingly change color. I show that formula in video.

    • @kadirkkkk
      @kadirkkkk 4 місяці тому +1

      @@RezaDorrani what i didnt understand (and now i did) was the selection table column "Current: varstep=4" . At first it was weird for me cause i thought i was setting a value for varStep in "Current" column. And now i got that it works like "if varStep=4 then Current = true" so the circle turns to green. Great work, i liked your videos on youtube.

  • @mujtabaahmed6305
    @mujtabaahmed6305 5 місяців тому

    Hi @Reza. I want something like I'm creating a news post in a site and same news post will be copy to my another site by a power automate flow. News post is like site page and don't saving any data in sharepoint list.
    Can you please help me to build a flow for this? It'll be kind enough.
    Thank you.

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      I do not have a video reference on this scenario and would have to try it out to provide guidance. I will recommend checking or posting your query on forums in case someone has experienced something similar powerusers.microsoft.com

  • @rebeccathorn-pena9108
    @rebeccathorn-pena9108 2 місяці тому

    what's the formula for the button to view the selected record? also, edit the selected record? I didn't see this step in the video.

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

      View I think I showed in video.
      Edit will be to use editform.

    • @rebeccathorn-pena9108
      @rebeccathorn-pena9108 2 місяці тому

      @@RezaDorrani I rewatched the entire video again and I don't see the formula to view the record. You do show the button at the very end of the video being used, but I don't have the onselect formula to view the selected row from the table control
      ETA: I figured out the formula:
      EditForm(ApprovalForm2);Navigate(Screen3)

  • @techwithchanchal
    @techwithchanchal 5 місяців тому

    Hi Reza, That Ctrl+Z logic for selecting DatacardKey & Datacard Value in a form does not work anymore. Right ?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      You mean the one to select all data cards?
      That does work

    • @techwithchanchal
      @techwithchanchal 5 місяців тому

      @@RezaDorrani Yes Correct. I don't know that's not working for me.

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      @@techwithchanchal Im not sure why

    • @techwithchanchal
      @techwithchanchal 5 місяців тому +1

      @@RezaDorrani No worries, Thank you for your reply. 😀

  • @ameymore8492
    @ameymore8492 4 місяці тому

    Someone help with this -
    I have a form control on a mobile view screen. Datacards are arranged in a vertical manner. Certain data fields are only visible when a button is clicked and when these fields appear, they are the bottom of the screen.
    I basically want to scroll down the form control automatically to those fields once they are visible.

    • @RezaDorrani
      @RezaDorrani  4 місяці тому

      I will recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com

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

    I am facing one problem in this form when i deployed this project on SharePoint and i am coming from gallary to view the data only text field values are coming not choice

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

      I have not experienced the mentioned issue and hence not sure what the cause for it could be.
      I will recommend posting your issue on forums in case someone has experienced something similar powerusers.microsoft.com

  • @ram04199
    @ram04199 5 місяців тому

    Hi Reza, the default view of the Table control's columns are in the Compressed state. The user has to expand all the columns whenever they refresh the app.
    Is there any way to fix the width of the columns in the Table like we do in excel?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      As an app maker, once you set the widths in edit mode and publish, the same width holds for users running the app.

    • @ram04199
      @ram04199 5 місяців тому

      But for modern Table control, there is no option to set the width for columns.
      I tried to set the width by expanding the columns while app making, but after publishing the app the columns are compressed

    • @RezaDorrani
      @RezaDorrani  5 місяців тому +1

      I am talking about modern table control only. When editing the app, simply hold alt key and set the widths.

  • @Hulk-m3x
    @Hulk-m3x 5 місяців тому

    Hi Reza is there a way to find whether the current logged user in powerapps male or female

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      I don’t know if that’s an option

    • @Hulk-m3x
      @Hulk-m3x 5 місяців тому

      @@RezaDorrani thanks for your confirmation 😍

  • @gunasekar4098
    @gunasekar4098 5 місяців тому

    Look good, but little difficult to understand as beginners that variable and other stuff

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

    I'm asking out of desperation, but has anyone run into an issue with modern text input boxes configured to Multi-Line? It seems that when you try to insert text into the box, it will jump your cursor to the end of the text immediately after pressing a single key...
    I can't find a fix anywhere

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

      I have not experienced this issue

  • @BharathKumar-qz3wd
    @BharathKumar-qz3wd 2 місяці тому

    Hi Can i do the same without a dashboard page and a button to raise new request , I want the form to be the landing page itself, Please help

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

      I do not have a video reference on this and would have to try it out to provide guidance.
      I will recommend checking or posting your query on forums in case someone has done something similar powerusers.microsoft.com

    • @BharathKumar-qz3wd
      @BharathKumar-qz3wd 2 місяці тому

      @@RezaDorrani Thank you will check on it .

  • @peterminer894
    @peterminer894 5 місяців тому

    Please what if I want to edit?

    • @RezaDorrani
      @RezaDorrani  5 місяців тому

      Similar to viewform function there is an editform function.

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

    How did you add emoji within the step gallery?

    • @RezaDorrani
      @RezaDorrani  3 місяці тому +1

      Windows + .

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

      @@RezaDorrani Thank you for your help, it is not working from my laptop.

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

      @@sonalipatel12 Im not sure why thats the case

    • @sonalipatel12
      @sonalipatel12 3 місяці тому +1

      Ok, I learn so much from your videos, very helpful with my work. Thank you!

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

      On desktop it is working fine!

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

    bro sorry but your accent and voice are unbearable, I'll watch it anyway cause I need to learn but you could really benefit by improving the delivery just soften the voice and reduce the accent

    • @RezaDorrani
      @RezaDorrani  2 місяці тому +1

      Oh!! I’m sorry that my voice isn’t up to your standards.
      I’ll work on that right away, only for you. In the meantime, I’m thrilled that you’ll still endure my unbearable accent for the sake of learning.

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

      @@RezaDorrani I'm sure you'll get more views if you work on it, most people won't say it but its the truth

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

      @@hermetism Thanks for the advice

  • @moyo96
    @moyo96 5 місяців тому +1

    Another great one Reza!