Export Power Apps Gallery Data into PDF

Поділитися
Вставка
  • Опубліковано 3 гру 2024

КОМЕНТАРІ • 17

  • @rishikrao
    @rishikrao 2 місяці тому +1

    Ravindra is amazing. Thanks for sharing.

  • @sanmatinavale5560
    @sanmatinavale5560 2 місяці тому +1

    Hi Ravi, this is super,
    It would be great if you pick the next topic for video as how to get desired galary data into excel using power apps.

  • @trl_lrt
    @trl_lrt 2 місяці тому +1

    This is great, almost identical to a use case that I'm working through and stuck on. The key difference I need to transpose the headers to rows and have them listed in the the first column. Then dynamically control that each pdf page contains 6 columns and page layout landscape, each page repeats the first column of 'header' values. The remaining 5 columns are record values from the selected records in app. So if 13 records it will be 2 pages with 6 columns and last page with 4 columns. It would be great if you have any thoughts or even want to create a video on the use case

  • @sanikathorat2137
    @sanikathorat2137 2 місяці тому +2

    Excellent 👍🏻, from many days I am finding this, how to download file or pdf to local machine using flow thank

  • @shareqkhan7319
    @shareqkhan7319 8 днів тому +1

    What is use of delay action

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  3 дні тому +1

      To Dealy or wait to perform next action or step

  • @pavanbevara7885
    @pavanbevara7885 15 днів тому +1

    Hi Thanks for the video , but how you get .downloadlink in onselect code of button , i didn't get any thing?

  • @OswaldoVdv
    @OswaldoVdv 28 днів тому +1

    Can I do this with Images?

  • @nicksakatis4992
    @nicksakatis4992 2 місяці тому +1

    Where is the CSS code?

    • @jadhav_ravi_oo7
      @jadhav_ravi_oo7  2 місяці тому +3

      table {
      border: 1px solid #1C6EA4;
      background-color: #EEEEEE;
      width: 100%;
      text-align: left;
      border-collapse: collapse;
      }
      table td, table th {
      border: 1px solid #AAAAAA;
      padding: 3px 2px;
      }
      table tbody td {
      font-size: 13px;
      }
      table thead {
      background: #1C6EA4;
      border-bottom: 2px solid #444444;
      }
      table thead th {
      font-size: 15px;
      font-weight: bold;
      color: #FFFFFF;
      border-left: 2px solid #D0E4F5;
      }
      table thead th:first-child {
      border-left: none;
      }

    • @nicksakatis4992
      @nicksakatis4992 2 місяці тому

      Is the Css code open source? it is not in the comment box i don't see. Thanks!

    • @nicksakatis4992
      @nicksakatis4992 2 місяці тому

      @@jadhav_ravi_oo7 Thank You!