If I have a variable that sets the form to View when I navigate there, the accordion aspects do not work unless the form is in edit mode. Is there a work-around for this?
Yes I found the solution but not like this vedio. I have declare a variable and set value different for each expend and collapse icon now click on icon set variable value true like example on select collapse icon and on select expand icon Set(VarExpande,2) now in each card set visible property if (Varcollaps=1,true,false). Set (Varcollaps,1)
Wonderful and very useful video you have created. Bro I have a query I used add icon but when I clicked on icon it’s showed plus icon. Can you please tell how I will get that - minus icon
I tried to leave a comment earlier but it seems to have deleted. One thing I noticed is that using the toggle doesn't change the expand collapse icons at all. It leaves them all at "expand." I was able to modify it for my purposes by doing the following: For the expand icon Visible tag: If(varshowfields=X||varshowfields=-1,false,true) For the collapse icon Visible tag: If(varshowfields=-1||varshowfields=X,true,false) X= the showfields section in question (1 , 2, 3, etc.) I'm not sure if I did that is as efficient as you would have done it, but it worked for me :) Love your videos!
First of all thanks for the comprehensive video! I just wanted to ask how you save the EditForm to your data after creating a new entry? Do you do it with SubmitForm? I have been having problems getting that to work, so I just wanted to make sure I'm on the right track. Thanks so much!
Very nice! May I ask where you define the variable "varshowfields" first before using it in the If..case within the buttons? It has to be defined before I think... Many Thanks!
Good Morning, I was battling this question also. The variable is declared at the IF statement on the Button's OnSelect field. If(varshowfields=1,Set(varshowfields,0),Set(varshowfields,1)). It is the very first varshowfields in the statement. If you are having problems with the button not working, just like I did...LOL, on the Edit Form, switch the default mode from Edit to New then press play. This helped me and it worked.
Wonderful video sir. I have a question though. What if we have multiple data input options both vertically and horizontally. Like 3 data input menus in first row then 4 and then 5. And I want to hide them by clicking a button so that next set of similar options become visible. How do I do that?
Hi Deepak- Your videos are such a life saver for my kind of people. i have a question.. can we create dynamic forms in power apps like Microsoft forms. I have scenario whereas we have 30 customers which will create questionnaire on Powerapps..questions can be Yes/ No. Or text types..count of questions may vary . After creating the questionnaire, other users will have to answer those questions... Can we do it on power apps..
You are the best Deepak. Your videos always help me to resolve my issue. A big Thanks to you Deepak !!
Deepak.. you are just Brilliant..
Excellent lesson. Clear explanation and simple to execute. Thank you. Appreciate video clocks in under 20 minutes.
Glad you enjoyed it!
Brilliant and economic 'coding', patient delivery and teaching. Good stuff! Really liked the way you used a variable for the mode of the form.
Thanks a lot 🙏🏻
Wonderful! Your explanation is very clear. I am very glad to find your channel. Thank you!
Thanks a lot... don’t forget to share my channel with your friends 😀
Cool stuff, however if the form is in View mode the +/- (expand/collapse) icons don't work because they inherit the display mode from the form, right?
If I have a variable that sets the form to View when I navigate there, the accordion aspects do not work unless the form is in edit mode. Is there a work-around for this?
Same logic should work with view form, I have not tried but will give a try.
This is so brilliant!! thanks a lot for sharing
Thanks for watching!!!
Well done/delivered - easy to follow - and learn.
Thank you !
Hi Deepak what have you kept in the on select property of zoom in and zoom out in earlier part of video?
How we change Varshowfield value..?
Are you declaring this variable anyother control.?
Did you find a solution? I have not yet.
Yes I found the solution but not like this vedio.
I have declare a variable and set value different for each expend and collapse icon now click on icon set variable value true like example on select collapse icon and on select expand icon Set(VarExpande,2) now in each card set visible property if (Varcollaps=1,true,false).
Set (Varcollaps,1)
i hope you have find the fix for the issue.
Wonderful and very useful video you have created. Bro I have a query I used add icon but when I clicked on icon it’s showed plus icon. Can you please tell how I will get that - minus icon
I tried to leave a comment earlier but it seems to have deleted.
One thing I noticed is that using the toggle doesn't change the expand collapse icons at all. It leaves them all at "expand." I was able to modify it for my purposes by doing the following:
For the expand icon Visible tag: If(varshowfields=X||varshowfields=-1,false,true)
For the collapse icon Visible tag: If(varshowfields=-1||varshowfields=X,true,false)
X= the showfields section in question (1 , 2, 3, etc.)
I'm not sure if I did that is as efficient as you would have done it, but it worked for me :) Love your videos!
Thanks, and sorry to hear your comment got deleted, not sure how. You are absolutely correct in how you have done it.
fantastic. Love your approach
Thank you for watching !
It’s very helpful video sir. Thank you so much.
Thanks for watching 👍🏻
Amazing video, thanks for sharing 😎
Thanks for watching!
Great tips! How did you get the button colors to fade as shown in the initial app?
can you use the logic without a variable? such as If(button6=1,Set(something, something? I like to use ut without the variable
First of all thanks for the comprehensive video!
I just wanted to ask how you save the EditForm to your data after creating a new entry? Do you do it with SubmitForm? I have been having problems getting that to work, so I just wanted to make sure I'm on the right track.
Thanks so much!
Thanks for watching. Yes i used "SubmitForm".
Nice and easy to understand...
Thank you 🙏🏻
Can you provide the excel sheet that you used for this? I have a different dataset and it would be useful to see how to organize it
Very nice!
May I ask where you define the variable "varshowfields" first before using it in the If..case within the buttons? It has to be defined before I think...
Many Thanks!
Good Morning, I was battling this question also. The variable is declared at the IF statement on the Button's OnSelect field. If(varshowfields=1,Set(varshowfields,0),Set(varshowfields,1)). It is the very first varshowfields in the statement. If you are having problems with the button not working, just like I did...LOL, on the Edit Form, switch the default mode from Edit to New then press play. This helped me and it worked.
@@adventureDad1976 thank you so much, yes it is working,thankyou so very much.
This is great and very helpful!!!
Glad it was helpful!
Wonderful video sir. I have a question though. What if we have multiple data input options both vertically and horizontally.
Like 3 data input menus in first row then 4 and then 5. And I want to hide them by clicking a button so that next set of similar options become visible.
How do I do that?
hi this method works on Add items but how about on Edit mode?
The buttons are selectable when the form is in "view". What is the work around?
You can add logic to disable button when form is in view mode.
Is there a way to have the form in viewable mode but keep the accordion aspect?
Yes. Accordion behavior is not dependent on Form mode (view/edit). you just need to set the form mode to view.
@@DeepakShrivastava How did you accomplish this? Mine is not working in View Mode, only Edit Mode. TY!
hi, where can I find the dataset file or for practice ?
Sorry but I didn’t follow your question.
nice deepak, I'm new learner for PowerApps
could we use for deferent form? it means deferent list..
Yes, definitely. but you may need to update the logic a bit.
How can you expand 2 or more sections simultaneously? You can only expand one at a time here. Please help
You need to update the show/hide logic , but i wonder that will not be a simple logic to write.
great video sir
Thank you 🙏🏻
Hi, when I change my form-display mode to view mode the collapse not working can you help me with that
following
Hi Deepak- Your videos are such a life saver for my kind of people.
i have a question.. can we create dynamic forms in power apps like Microsoft forms.
I have scenario whereas we have 30 customers which will create questionnaire on Powerapps..questions can be Yes/ No. Or text types..count of questions may vary . After creating the questionnaire, other users will have to answer those questions...
Can we do it on power apps..
Please guide me how to use it for Gallery. Thanks
How to add user using Azure AD Connector by Power Apps in entra id?
This will be an other video topic.
Gratz!!!!
Thank You..
Thanks, It helped!
You're welcome!
Accordions are not working in view but works in new and edit..how can I fix it??
following
Thank you so much
Thank you.
iam doing same bro,but it came missmatch
Sorry but i don't understand your question.