Power Apps Text Functions

Поделиться
HTML-код
  • Опубликовано: 20 янв 2025

Комментарии • 31

  • @Soulebi03
    @Soulebi03 4 месяца назад +2

    wow I learned a lot from this! I didnt know most of this functions.

    • @ShanesCows
      @ShanesCows  4 месяца назад

      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" 🤩

  • @dustinrocksvold8650
    @dustinrocksvold8650 3 месяца назад +1

    Just a note, watching this on a Tuesday, at random. Keep up the good work Shane!

    • @ShanesCows
      @ShanesCows  3 месяца назад

      Those darn random Tuesdays 🤣 Thanks

  • @UncleBubba
    @UncleBubba 4 месяца назад +2

    Thanks Shane. That String Interpolation bit was new to me, and the rest was a worthwhile refresher

    • @ShanesCows
      @ShanesCows  4 месяца назад

      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
      @stuart-saunders 4 месяца назад

      @@ShanesCows same, muscle memory prevents me from ever using it. We aptly named it dollarstring because Interpolation is too difficult to say!

  • @timwalter6989
    @timwalter6989 4 месяца назад +2

    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!

    • @ShanesCows
      @ShanesCows  4 месяца назад +1

      Awesome Tim, I have only done the gallery thing once but it would have been a good idea to include. 🤩

  • @jeanpierreragequit1726
    @jeanpierreragequit1726 4 месяца назад +1

    Another great didactic review ! Thx u Shane !!

    • @ShanesCows
      @ShanesCows  4 месяца назад +1

      Happy to help. Have a great week. 😎

  • @rreukauf
    @rreukauf 2 месяца назад +1

    These videos are great!

  • @waynedooley6368
    @waynedooley6368 4 месяца назад +1

    Excellent! Thanks, Shane!

    • @ShanesCows
      @ShanesCows  4 месяца назад

      Happy to help Wayne 😎

  • @cvkealey
    @cvkealey 4 месяца назад +1

    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.

  • @jordanfritz4913
    @jordanfritz4913 4 месяца назад +1

    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.

    • @ShanesCows
      @ShanesCows  4 месяца назад

      Awesome, thanks for sharing. 😎

  • @oluwatobiyusuf
    @oluwatobiyusuf 3 месяца назад +1

    Thank you Shane.

    • @ShanesCows
      @ShanesCows  3 месяца назад

      Appreciate the support.

  • @TheKermit2110
    @TheKermit2110 4 месяца назад +1

    love this vid approach Shane

    • @ShanesCows
      @ShanesCows  4 месяца назад

      Thanks. Guess I will have to do more. Have a great week my green friend.

    • @EMiller500
      @EMiller500 2 месяца назад

      @@ShanesCows Yes, please continue these Power-Effects-function-based videos! They really break it down in a comprehensible way.

  • @collincooper5607
    @collincooper5607 3 месяца назад +1

    I'm literally just watching this on a random Tuesday. Why you gotta call me out like that? 🤣

    • @ShanesCows
      @ShanesCows  3 месяца назад

      Because I know you Collin and you needed reminded. 🤣

  • @jeffersondaniel5883
    @jeffersondaniel5883 4 месяца назад +1

    Didn’t realize text interpolation was out. JavaScript developers will love that lol

    • @ShanesCows
      @ShanesCows  4 месяца назад

      As much as I love the cat in glasses avatar you are rocking? 😻

    • @jeffersondaniel5883
      @jeffersondaniel5883 4 месяца назад

      @@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_vishy
    @hi_vishy 4 месяца назад +2

    String interpolation is the same as in python. Python uses f while it's $ in PowerApps.

    • @ShanesCows
      @ShanesCows  4 месяца назад +1

      Good to know, thanks.