Тёмный

Creating Multi-Step Forms in Power Apps | Tutorial 

Reza Dorrani
Подписаться 136 тыс.
Просмотров 58 тыс.
50% 1

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 150   
@sankhlayashraj
@sankhlayashraj 5 месяцев назад
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 месяцев назад
Most welcome and glad to know you built something similar
@DomiAbou
@DomiAbou 5 месяцев назад
Very elegant process, and code minimized ! thanks Reza!
@RezaDorrani
@RezaDorrani 5 месяцев назад
Great to hear
@gmatdakuti
@gmatdakuti 4 месяца назад
Reza the king strikes again!!! wonderful video
@RezaDorrani
@RezaDorrani 4 месяца назад
Thanks so much! Content is King
@raj7sam
@raj7sam 5 месяцев назад
It was superb , small tricks but very useful as always
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thanks
@ibrahimabu-awad8511
@ibrahimabu-awad8511 4 месяца назад
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 4 месяца назад
Welcome! Power Apps does not understand SharePoint content types.
@ibrahimabu-awad8511
@ibrahimabu-awad8511 4 месяца назад
@@RezaDorrani Is there a workaround then?
@RezaDorrani
@RezaDorrani 4 месяца назад
@@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.
@techwithchanchal
@techwithchanchal 4 месяца назад
Hi Reza, That Ctrl+Z logic for selecting DatacardKey & Datacard Value in a form does not work anymore. Right ?
@RezaDorrani
@RezaDorrani 4 месяца назад
You mean the one to select all data cards? That does work
@techwithchanchal
@techwithchanchal 4 месяца назад
@@RezaDorrani Yes Correct. I don't know that's not working for me.
@RezaDorrani
@RezaDorrani 4 месяца назад
@@techwithchanchal Im not sure why
@techwithchanchal
@techwithchanchal 4 месяца назад
@@RezaDorrani No worries, Thank you for your reply. 😀
@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 месяцев назад
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 👍
@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 месяцев назад
I am talking about modern table control only. When editing the app, simply hold alt key and set the widths.
@beingfarhan
@beingfarhan 5 месяцев назад
Hi reza sir, how can I get power apps developer job as a fresher?
@RezaDorrani
@RezaDorrani 5 месяцев назад
I have no clue about that.
@exe5933
@exe5933 4 месяца назад
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 4 месяца назад
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
@melron9254
@melron9254 5 месяцев назад
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 месяцев назад
Thanks for sharing! Various ways to do this. Goal was to keep it simple for the video.
@nickfaulkner6161
@nickfaulkner6161 5 месяцев назад
That is a novel way to use the Approval screen template.
@pappumahawar2893
@pappumahawar2893 5 месяцев назад
It would be nice content for skills improve with new approaches...
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thanks
@maribelmanibo334
@maribelmanibo334 3 месяца назад
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 месяца назад
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.
@GeneRice
@GeneRice 4 месяца назад
Well done, sir! Such an elegant solution to a problem I've been wrestling with for some time now. Thank you!
@milanthapa281
@milanthapa281 4 месяца назад
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 4 месяца назад
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“
@sujitdaswant5256
@sujitdaswant5256 5 месяцев назад
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
@MegaKumar0
@MegaKumar0 5 месяцев назад
Wonderful technique for multi steps form Reza!. Thank you for your valuable time to educate & make it easy.
@RezaDorrani
@RezaDorrani 5 месяцев назад
Most welcome
@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
@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.
@frenamakenson9844
@frenamakenson9844 3 месяца назад
thx for sharing , nice tips with the submit form for non validate field
@RezaDorrani
@RezaDorrani 3 месяца назад
Glad it was helpful!
@DY357LX
@DY357LX Месяц назад
Really good video. Thanks for sharing.
@RezaDorrani
@RezaDorrani Месяц назад
Thanks for watching
@jaypeehernandez4029
@jaypeehernandez4029 26 дней назад
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 26 дней назад
Thanks! The video shows a gallery connected to a form.
@aducaale328
@aducaale328 5 месяцев назад
Wonderful content. Thanks for these amazing content 🎉
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thanks for watching!
@kreszentzia8345
@kreszentzia8345 2 месяца назад
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 2 месяца назад
Thanks so much! With the current pattern shown in video, there is a single form only. So it would show the mandatory validation across.
@bisonfan715
@bisonfan715 6 дней назад
FYI: Modern controls and themes is now under the updates tab, not general
@RezaDorrani
@RezaDorrani 6 дней назад
Thanks for sharing. There will come a time where it wont be there also and simply available right out of the box.
@ameymore8492
@ameymore8492 3 месяца назад
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 3 месяца назад
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
@17avskadoo
@17avskadoo Месяц назад
Quick question, in this multi step form design can you edit existing record?
@RezaDorrani
@RezaDorrani Месяц назад
Yes, possible
@rameshc4498
@rameshc4498 5 месяцев назад
Nice. Informative video
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thanks
@oluwatobiyusuf
@oluwatobiyusuf 4 месяца назад
Thank you Reza for this timely video.
@RezaDorrani
@RezaDorrani 4 месяца назад
My pleasure!
@gunasekar4098
@gunasekar4098 4 месяца назад
Look good, but little difficult to understand as beginners that variable and other stuff
@RezaDorrani
@RezaDorrani 4 месяца назад
Thanks for the feedback
@wilmafigueroa1860
@wilmafigueroa1860 28 дней назад
How did you insert a header with your logo and photo? was it pre-made?
@RezaDorrani
@RezaDorrani 28 дней назад
Modern header control ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-UEX4mXjxWOI.htmlsi=YJ2VR1KOgef09Pjv
@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 месяца назад
You can use the editform function
@BalaSubramanian1991
@BalaSubramanian1991 5 месяцев назад
Neatly done... impressive👏👏
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thank you! Cheers!
@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.
@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 месяцев назад
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.
@DroneEyes
@DroneEyes 5 месяцев назад
Another great video Reza!!!
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thank You
@MichaelDeBlasis1369
@MichaelDeBlasis1369 5 месяцев назад
Very Nice! and fast
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thanks!
@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 .
@moyo96
@moyo96 5 месяцев назад
Another great one Reza!
@RezaDorrani
@RezaDorrani 5 месяцев назад
Thank You!
@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)
@flash4wardgaming707
@flash4wardgaming707 3 месяца назад
@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 3 месяца назад
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.
@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.
@waynethompson2109
@waynethompson2109 4 месяца назад
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 4 месяца назад
Gallery for now as Table control is not GA yet
@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
@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.
@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
@mtamitolanga
@mtamitolanga 4 месяца назад
Great stuff!!!
@RezaDorrani
@RezaDorrani 4 месяца назад
Thanks!
@peterminer894
@peterminer894 4 месяца назад
Please what if I want to edit?
@RezaDorrani
@RezaDorrani 4 месяца назад
Similar to viewform function there is an editform function.
@sanskritisabhayta
@sanskritisabhayta 4 месяца назад
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 4 месяца назад
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 4 месяца назад
@@RezaDorrani kanban board I m interested in which you made long time back 5 years ago...
@RezaDorrani
@RezaDorrani 4 месяца назад
@@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 4 месяца назад
Ok sure, anyways good work thank you... I have learned a lot from you.
@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 месяца назад
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
@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. “
@AMindGame
@AMindGame 4 месяца назад
Always up to date content! Thank you Reza!
@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.
@kadirkkkk
@kadirkkkk 4 месяца назад
@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 4 месяца назад
I check formmode and accordingly change color. I show that formula in video.
@kadirkkkk
@kadirkkkk 4 месяца назад
@@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.
@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
@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
@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 месяцев назад
@@facun_OK I did a tutorial video on table control. Try checking that.
@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 😍
@sonalipatel12
@sonalipatel12 3 месяца назад
How did you add emoji within the step gallery?
@RezaDorrani
@RezaDorrani 3 месяца назад
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 месяца назад
Ok, I learn so much from your videos, very helpful with my work. Thank you!
@sonalipatel12
@sonalipatel12 3 месяца назад
On desktop it is working fine!
@dougydoe
@dougydoe 5 месяцев назад
Great technique for creating Multi-Step Form. Certainly another tip to add to my armoury for subsequent projects. Thanks for sharing.
@RezaDorrani
@RezaDorrani 5 месяцев назад
Very welcome!
Далее
Multiple Screen Form Control in Power Apps
29:46
Просмотров 269 тыс.
荧光棒的最佳玩法UP+#short #angel #clown
00:18
CORTE DE CABELO RADICAL
00:59
Просмотров 2,3 млн
Watermelon magic box! #shorts by Leisi Crazy
00:20
Просмотров 18 млн
荧光棒的最佳玩法UP+#short #angel #clown
00:18