Format Data Table As HTML Table In Power Automate Desktop

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

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

  • @DenizRuzgari0954
    @DenizRuzgari0954 7 месяцев назад

    hello I made the same thing but borders in the table didn't turn into 1px solid black, it is shown in PAD as with transparent borders. Could you please check it ?

  • @calvinjeng
    @calvinjeng 10 месяцев назад

    very good!

  • @suraj_singh321
    @suraj_singh321 10 месяцев назад

    Hi sir make a video on how we can map two different column without loop perform vlookup and remove vlookup formulae in power automate desktip

  • @jatinkumar-gi6sv
    @jatinkumar-gi6sv 3 месяца назад

    hello . i tried the same and i am getting error as my column name is this (LOB's,Firts Name's ,Last Name's)
    I tired the same syntax which you have mnetioned :
    %CurrentItem['LOB's]
    but i am getting error that :There is no column found .
    .Can you help me in telling what should i update while creating list in add item in table body as its not taking syntax like ['Lob's']?
    Thanks ,

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

      You can write it like this ['Lob\'s']. It will work then

    • @jatinkumar-gi6sv
      @jatinkumar-gi6sv 3 месяца назад

      @@technicaltrainingsolutions Hi There I tried adding the same. But it’s giving same error “ Column or Property ‘LOB’s not found.
      Below is my code :
      Create new list
      For each currentitem to ExcelData
      Add item list - LOB’s
      End
      Add item to list
      Add item to list
      %Currentitem[‘LOB\’s’]
      Can you check and tell what is wrong and why it’s giving me this error

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

      Excel.Attach DocumentName: $'''challenge.xlsx''' Instance=> ExcelInstance
      Excel.ReadFromExcel.ReadAllCells Instance: ExcelInstance ReadAsText: False FirstLineIsHeader: True RangeValue=> ExcelData
      Variables.CreateNewList List=> List
      Variables.AddItemToList Item: $'''IDLOB\'s''' List: List
      LOOP FOREACH CurrentItem IN ExcelData
      Variables.AddItemToList Item: $'''%CurrentItem['ID']%%CurrentItem['LOB\'s']%''' List: List
      END
      Variables.AddItemToList Item: $'''''' List: List
      Text.JoinText.JoinWithDelimiter List: List StandardDelimiter: Text.StandardDelimiter.NewLine DelimiterTimes: 1 Result=> JoinedText
      Text.CreateHTMLContent HtmlEditor: $'''%JoinedText%''' HtmlContent=> HtmlContent

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

      please check this. it is working

    • @jatinkumar-gi6sv
      @jatinkumar-gi6sv 3 месяца назад

      @@technicaltrainingsolutions should I paste whole this whole code ??

  • @suraj_singh321
    @suraj_singh321 10 месяцев назад

    Hi sir make a video on convert excel to xml data in power automate desktop

  • @jatinkumar-gi6sv
    @jatinkumar-gi6sv 3 месяца назад

    Hi There..Can you try to Create a video on "Converting Number Values into Percentage into Power Automate Dekstop"
    Like:
    We have excel data with Columns:
    Name Marks Rank
    XYZ 90% 1
    Ash 35% 2
    Bharati 20% 3
    We want to copy the same data with same format within table into Email body . Right now what is happening when i am copying the data through flow in HTML body its take Percentage as a Number and pasting them as a Number in Email body
    Result I am getting when i am pasting the data into email body is :
    Name Marks Rank
    XYZ 0.9000 1
    Ash 0.3500 2
    Bharati 0.200 3
    Expected result :
    Name Marks Rank
    XYZ 90% 1
    Ash 35% 2
    Bharati 20% 3
    Can you help me in creating one video if its possible in Power Automate Dekstop?
    Thanks .