wow I learned a lot from this! I didnt know most of this functions.
@ShanesCows2 ай бұрын
Awesome! It is all of these little functions that make working with Power Apps so much easier. Just have to solve the common proble for most people, "You don't know, what you don't know" 🤩
@dustinrocksvold865023 күн бұрын
Just a note, watching this on a Tuesday, at random. Keep up the good work Shane!
@ShanesCows23 күн бұрын
Those darn random Tuesdays 🤣 Thanks
@timwalter69892 ай бұрын
As always, great summary of many of the functions used on a daily basis. I often user Len() to control font sizes when I have limited space (especially is galleries when displaying variable length fields). i.e., If(Len(varrecord.Description>40,12,14)). Real estate on the screen always seems to be an issue. Thanks again for all you do for the developer community!
@ShanesCows2 ай бұрын
Awesome Tim, I have only done the gallery thing once but it would have been a good idea to include. 🤩
@UncleBubba2 ай бұрын
Thanks Shane. That String Interpolation bit was new to me, and the rest was a worthwhile refresher
@ShanesCows2 ай бұрын
That was also my first go at String Interpolation. 😎 I see how it is faster but it just doesn't come out of my brain that way.
@stuart-saundersАй бұрын
@@ShanesCows same, muscle memory prevents me from ever using it. We aptly named it dollarstring because Interpolation is too difficult to say!
@cvkealey2 ай бұрын
Len is great for creating "character counters" in apps. I create a lot where there are multi-line text fields with a character limit and it's really helpful to include (above or below the field) something that says "xx characters out of yy" where the xx is the len formula pointing at the field and yy is the text field's limit.
@ShanesCows2 ай бұрын
I like it! 👍
@jordanfritz49132 ай бұрын
Great video. Love the inclusion of String Interpolation. String interpolation is known as formatted string literals (f strings) in Python. I find it better when building large text/HTML blocks with lots of dynamic injections, because it looks cleaner. For simplistic tasks, my first love was Excel, and therefore, & all the way.
@ShanesCows2 ай бұрын
Awesome, thanks for sharing. 😎
@jeanpierreragequit17262 ай бұрын
Another great didactic review ! Thx u Shane !!
@ShanesCows2 ай бұрын
Happy to help. Have a great week. 😎
@rreukauf9 күн бұрын
These videos are great!
@ShanesCows9 күн бұрын
Thank you!
@collincooper5607Ай бұрын
I'm literally just watching this on a random Tuesday. Why you gotta call me out like that? 🤣
@ShanesCowsАй бұрын
Because I know you Collin and you needed reminded. 🤣
@waynedooley63682 ай бұрын
Excellent! Thanks, Shane!
@ShanesCows2 ай бұрын
Happy to help Wayne 😎
@oluwatobiyusuf27 күн бұрын
Thank you Shane.
@ShanesCows25 күн бұрын
Appreciate the support.
@TheKermit21102 ай бұрын
love this vid approach Shane
@ShanesCows2 ай бұрын
Thanks. Guess I will have to do more. Have a great week my green friend.
@jeffersondaniel58832 ай бұрын
Didn’t realize text interpolation was out. JavaScript developers will love that lol
@ShanesCows2 ай бұрын
As much as I love the cat in glasses avatar you are rocking? 😻
@jeffersondaniel58832 ай бұрын
@@ShanesCows haha rocking what? Yep I use this avatar for a lot of profile stuff and test data lol I do got a nice ai art of me almost looks real. Should switch that lol
@hi_vishy2 ай бұрын
String interpolation is the same as in python. Python uses f while it's $ in PowerApps.