cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
PierrickBIT
Regular Visitor

Import date from excel rows to HTML table

Well, first, I know there have been like dozens of topics like this and I'm sorry to bother.

 

I've read for many hours now and cannot get a solution.

 

Pasted below are some good links that helped people

Power Automate flow HTML Table Formatting in Email | Flows & SharePoint - YouTube

https://powerusers.microsoft.com/t5/General-Power-Automate/Manipulating-Flow-Excel-Date/td-p/365876

https://powerusers.microsoft.com/t5/Building-Flows/Datetime-string-must-match-ISO-8601-format-Can-t-...

https://www.bythedevs.com/post/working-with-date-time-data-of-excel-in-power-automate

 

Unfortunately, maybe I'm cursed, maybe I'm dumb, but guess what? I cannot get out of this.

 

Anyway, here we go: an excel sheet, formatted as a table, contains (among other things) dates. Those dates are Date-type-excel-formatted. I added a column, containing same dates but formatted as text, because... why not, just to run some tests.

PierrickBIT_0-1675104377669.png

 

Here is the very beginning of the flow. Note that I forced the date format to ISO8601 (as I read a couple of times to be the magic trick)

PierrickBIT_1-1675104547922.png

 

Next step is to select the data I will later paste in the HTML table

PierrickBIT_2-1675104671063.png

The formula for the date is the following: formatDateTime(addDays('1899-12-30',int(item()?['DATE_BRUT'])),'yyyy-MM-dd')

 

This error I get (actually the end of it):

"@formatDateTime(addDays('1899-12-30',int(item()?['DATE_BRUT'])),'yyyy-MM-dd')"
}' failed: 'The template language function 'int' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'.

The error is the same if I use DATE (date format) instead of DATE_BRUT (text format).

 

I don't think the rest of the flow is relevant because I'm stuck just above, but here it is

PierrickBIT_3-1675104838330.png

The "compose" step is used to make a beautiful table, like Reza Dorrani showed in his video I linked earlier.

 

That may be the ultimate question about this issue, so if you please help me you will be remembered as a true hero.

 

1 ACCEPTED SOLUTION

Accepted Solutions

Next thing to check - are the dates filled in for all your rows, or are some of them blank? If some of them are blank, then you would need to check first before using the formatDateTime expression. See example below:

 

if(empty(item()?['DATE']), null, formatDateTime(item()?['DATE'],'yyyy-MM-dd'))

----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

View solution in original post

8 REPLIES 8

When you set your List items present in a table to ISO8601, what format do the dates come back as? It should come back as standard ISO format. To check, click on Click to download (see screenshot below) on your List rows present in a table and it will show all the raw data in a new window. You can press CTRL+F then search for your date fields to see the actual values. If they are coming back as ISO format (yyyy-MM-dd) then you don't need to use the expression to convert. However, if still coming back as a serial date (44953 for example) then your expression should work.

 

grantjenkins_0-1675132693495.png

 

If you've set to ISO8601 and the dates are coming back in the format yyyy-MM-dd, then your expression would throw an error, which might be what's happening here.

 


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

Thanks for your time Grant

 

You are right, when I set the list format to ISO8601, the date turns to something like: 

PierrickBIT_0-1675151942477.png


That aint that far to good but the timestamp after the day is useless.

That is the reason why I adapted the formula to get rid of the correction based on 01/01/1900 trick.

The new formula is: formatDateTime(item()?['DATE'],'yyyy-MM-dd')

But an error occurs too!

"Date": "@formatDateTime(item()?['DATE'],'yyyy-MM-dd')"
}' failed: 'In function 'formatDateTime', the value provided for date time string '' was not valid. The datetime string must match ISO 8601 format.'. 

When you click on Click to download and view all the data, can you check to see the name of the column? In your expression your using 'DATE', but maybe that's not the actual internal name - it will be whatever you see in the output. Your expression looks fine, so assuming this might be the issue.

 

//Need to validate the name of your column

formatDateTime(item()?['INTERNAL_NAME_OF_YOUR_COLUMN'],'yyyy-MM-dd')

 


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

This is an extraction of the output. See at the end "DATE" field

{"statusCode":200,"headers":{"Pragma":"no-cache","Transfer-Encoding":"chunked","Vary":"Accept-Encoding","x-ms-request-id":"6784170a-3b06-4d45-989e-5ec5aa7c996e;a61b6f34-ceac-4316-a99c-2b63e8cae97d;3a9734e2-e5bf-421e-a3f4-dfd41a03b8cf;1908d1d0-d04a-470a-914c-6fb63469de61","OData-Version":"4.0","Strict-Transport-Security":"max-age=31536000; includeSubDomains","X-Content-Type-Options":"nosniff","X-Frame-Options":"DENY","Timing-Allow-Origin":"*","x-ms-apihub-cached-response":"false","x-ms-apihub-obo":"false","Cache-Control":"no-store, no-cache","Date":"Tue, 31 Jan 2023 08:05:44 GMT","Content-Type":"application/json; odata.metadata=minimal; odata.streaming=true","Expires":"-1","Content-Length":"99758"},"body":{"@odata.context":"https://excelonline-we.azconn-we-002.p.azurewebsites.net/$metadata#drives('b%21rZkVczBYwEKlF-nJgwkFAYDBVHCtrX9KmO77I8xCCIFwWBqTwm3eRItxAt6XfkOa')/Files('01U43LYLSS2MJKUE5575C2R3QLV3AFOXT4')/Tables('%7B00000000-000C-0000-FFFF-FFFF00000000%7D')/items","value":[{"@odata.etag":"","ItemInternalId":"59b69bbb-562e-4f9c-9caf-52c1666eaf76","SOMME":"20","TYPE":"virement","DATE":"2023-01-23T00:00:00.000Z","DATE_BRUT":"44949",

 

Next thing to check - are the dates filled in for all your rows, or are some of them blank? If some of them are blank, then you would need to check first before using the formatDateTime expression. See example below:

 

if(empty(item()?['DATE']), null, formatDateTime(item()?['DATE'],'yyyy-MM-dd'))

----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.
PierrickBIT
Regular Visitor

My God you are right @grantjenkins ! A few lines of the excel tables are actually empty, THAT is the issue in the first place!

 

Look at this ugly thing that comes out HTML table in the email (I had to seriously zoom out) :

PierrickBIT_0-1675165349806.png

 

Man, your parents should have named you Great, not Grant.

 

Well, I will gently smash this Accept as a solution button and send you all my love.

 

BONUS of the most annoying client ever:

 

But, could'nt that flow be like .. smarter? I mean it would be awesome if I had the opportunity to filter every empty line of the original excel table within the excel action, right?  

I found this : Solved: Re: Ignore blank rows using ODATA filter - List Ro... - Power Platform Community (microsoft....

which obviously add a filter action to the flow

 

Wouldn't that be more efficient to use the filter ODATA inside excel online action instead?

 

Glad it got sorted 🙂

 

Using the Filter array would be an option if you were happy to completely exclude those rows where the DATE is blank. But as you mentioned, it would be better to just use the Filter Query in List rows present in a table. The Filter Query you would use is:

//Note we are using two single quotes

DATE ne ''

grantjenkins_0-1675167377862.png

 

However, if you still wanted to return those rows to get the other data, and just leave the date blank in your output, then using the expression to check if the date is empty would be the way to go. It looked like you were outputting additional fields such as NOM PRENOM into your HTML table.


----------------------------------------------------------------------
If I've answered your question, please mark the post as Solved.
If you like my response, please consider giving it a Thumbs Up.

DATE ne '' ...

what kind of a language is this? Sounds like old roman latin scriptus 🤣


Don't know where that comes from but it works, impressive!

 

You're right, there are far more fields that come with the date (like NOM PRENOM) but none can be empty. That's why your solution is typically what I needed.

 

anyway MANY MANY MANY thanks. You've just earned the status of Sir @grantjenkins . Admins, give that man a cookie!

 

Cannot wait to ask you another tricky question 😅.

Best regards

Helpful resources

Announcements

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages