You Won't Believe How Easy Power Apps Text Box Input Control Really Is

  Рет қаралды 62,672

PowerApps Tutorial

PowerApps Tutorial

Күн бұрын

Пікірлер: 38
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
🚩Here is the playlist for all my videos covering the basics of Power Apps: kzbin.info/www/bejne/bJTbnX6Yn76Eaqs
@PowerAppsTutorial
@PowerAppsTutorial Жыл бұрын
🍬 Get my free video course, access to my free community, and, if you would like, you can book a call with me here: go.superpowerlabs.co/opt-in-page-page ⬅
@sundrapillay6668
@sundrapillay6668 2 жыл бұрын
Thanks Darren for all your good work
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
Thank you! 😁😁
@seanpedersen2379
@seanpedersen2379 26 күн бұрын
Hey there, Thanks for the video. I've been wondering. Is it possible to store the text input into a table/data source? I am thinking of it as an alternative to forms.
@benyamadugna
@benyamadugna 2 жыл бұрын
Thank You so much! so amazing tutorial its help me a lot
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
Awesome! Thanks for letting me know...makes my day!
@madmajor34
@madmajor34 2 жыл бұрын
Thanks a lot, it was really helpful !
@PowerAppsTutorial
@PowerAppsTutorial Жыл бұрын
Glad it helped!
@VijaySharma-dw7we
@VijaySharma-dw7we 2 жыл бұрын
Very nice work
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
Thank you! Cheers!
@sudosaurus
@sudosaurus 2 жыл бұрын
Darren, great starter video - I was actually looking to see if you have a tutorial on patching Text Input controls to SharePoint list columns? I am building an App where I have made a custom form that has a layout which isnt possible with using the 'Edit form' control. So I therefore need to patch the controls back to the associated SharePoint list.
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
Of course! Check out this video here: kzbin.info/www/bejne/Y4C9XqypZ9WqZrs
@sudosaurus
@sudosaurus 2 жыл бұрын
@@PowerAppsTutorial Thanks for this! Any idea how I would deep-link to a patched form in a powerapp?
@gtoledo019
@gtoledo019 Жыл бұрын
Hi, I love your videos on Power apps. How can I set up a label to show the number value from a Form data card that is formatted as a currency number and show in the label de $ and commas?
@PowerAppsTutorial
@PowerAppsTutorial Жыл бұрын
Hey, let me know if you need any help now.
@FineTuningAnalysis
@FineTuningAnalysis Жыл бұрын
Hey Shane, I have a checklist app with a simple text input control to say "Yes' or 'No' but when you start to type in the input box, it zooms in automatically every time and is quite frustrating for the user as they need to zoom out every time for every question & it can be a little tricky to zoom out too. Do you know if there is a way to stop the app from zooming in?
@PowerAppsTutorial
@PowerAppsTutorial Жыл бұрын
Hello! That doesn't sound normal, to be honest. What operating system are you on? Are there any apps (perhaps are meant for the visually impaired) on the system that might be doing this? -Darren
@asimrehan73
@asimrehan73 2 жыл бұрын
Hi, Thanks for this video. Would you be able to help me with; how to have the keyboard locked to caps-on when focussed on a text-input-box. So that everything is typed in upper caps all the time.--specially on mobile
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
You can't force the characters to show up as upper case as they are typing, however you can use the Upper() function to make it all uppercase before passing it into the database or variable. I hope that helps!
@asimrehan73
@asimrehan73 2 жыл бұрын
@@PowerAppsTutorial thank you. Much appreciated.
@JaffarSath
@JaffarSath Жыл бұрын
Hi, I love your videos on Power apps. I need a suggestion. I need to calculate the difference between current time and show it in a text box / label. I used the below formula in the Text property of the Text Label Minute(now()) - Minute(ProdTime) where the ProdTime is a variable which holds a time. When I update this formula, it gives me the hour difference between these two time (lets say 15 minutes). But the challenge is it is dynamic meaning when it past another minute, the text label still shows 15 minutes and doesn't change to 16. How to achieve this?
@PowerAppsTutorial
@PowerAppsTutorial Жыл бұрын
I might have to create a video to show how to do this. You could just use an If function to check to see if it went past, then use a negative (multiply by -1), then in the else block, use what you currently have. I do have a whole video on converting time. That may be helpful too! kzbin.info/www/bejne/jqLKoZxogcyEoJY
@sdponnekanti784
@sdponnekanti784 2 жыл бұрын
Hi Darren, Any suggestion you give us on how to insert a column to a text field - so that if i fill the text field the data should save in sharepoint column. Please advise Thank you
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
Sure. You can do this with a form or by using a patch expression.
@stevannsevellec1447
@stevannsevellec1447 2 жыл бұрын
Hi, the first example doesn't work : the reset function is ok. But impossible to reset the text with the expression textinput.text = "new..." ?? What is the solution ?
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
You have to use the default property in conjunction with Reset. One of the points I was making is that you can't assign a value directly to a textbox programmatically like you can in other programming languages.
@dandrem.4074
@dandrem.4074 2 жыл бұрын
I just want to know how to add default text to a datacard v_v and no one knows how.
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
Did you figure it out ok? Are you referring to a datacard inside a form?
@SEKK2109
@SEKK2109 Жыл бұрын
cool, you save my life
@PowerAppsTutorial
@PowerAppsTutorial Жыл бұрын
Be sure to get your free Power Apps Crash Course here: go.superpowerlabs.co/superyoutubelanding
@mattparadise3410
@mattparadise3410 2 жыл бұрын
You never showed how to make the first example work. You just showed how to reset it. Is there no way to update a text box with text?
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
No, that's how Power Apps is different. You can't just set a property of a control. What you have to do is create a variable and set it. Then, set the Text Input's default property to that variable. I hope that helps. :)
@Vrbii
@Vrbii 4 ай бұрын
That is text input not box
@PowerAppsTutorial
@PowerAppsTutorial 4 ай бұрын
That's true. Many people call them Text Boxes still, though. That's why you'll hear me use both names in the video. Thanks for watching! What topic would you like to see me do a video on next?
@Vrbii
@Vrbii 4 ай бұрын
@@PowerAppsTutorialreset text BOX input, cause it doenst have default property 😊
@ivancarmenates84
@ivancarmenates84 2 жыл бұрын
Ohh, sh... that's another ms access programing language.
@PowerAppsTutorial
@PowerAppsTutorial 2 жыл бұрын
ha ha.. Is that a good or bad thing? 🤣😂
Avoid These Common Power Apps Patch Function Mistakes At All Costs
29:35
PowerApps Tutorial
Рет қаралды 46 М.
Validate Inputs, Warn Users, and Disable Buttons in Power Apps
19:58
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Top Power Apps Expert Reveals Best Drop Down List Techniques
25:58
PowerApps Tutorial
Рет қаралды 31 М.
Power Apps Buttons & OnSelect
10:45
PowerApps Tutorial
Рет қаралды 60 М.
Power Apps Pen Input save to SharePoint & PDF (Signature)
22:11
Reza Dorrani
Рет қаралды 90 М.
How to Manage Projects Like a Pro in Microsoft Teams
24:33
Bulb Digital
Рет қаралды 170 М.
Form Control in Power Apps | Must know features & properties
30:59
Reza Dorrani
Рет қаралды 212 М.
PowerApps - Add validation to a Text Input control
4:52
Veronique Lengelle | MVP
Рет қаралды 10 М.
Power Apps Collections Introduction
18:48
Shane Young
Рет қаралды 98 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН