cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
tommoseley
Frequent Visitor

How to get date and time field from excel to outlook calendar event?

Trying to create a flow from Excel to create events in outlook calendar.

 

When I run it however it is creating all the events at the same time on the same day. I am assuming this is down to a missmatch in date and time formats between excel and power automate/outlook. 

 

The excel source is "30 Aug 2022, 00:00" in this format. How can I get this recognised so it creates an event at the correct time in outlook calendar?

 

Excel Source

Start Date/TimeEnd Date/Time
30 Aug 2022, 00:0031 Aug 2022, 00:00
22 Aug 2022, 00:0026 Aug 2022, 00:00

 

Thanks

7 REPLIES 7
eliotcole
Super User
Super User

Hi, @tommoseley, firstly, for anyone to be able to properly assist you here, we'll need to see some screenshots of your flow in that original question that you've made. Just edit it, and obfuscate where necessary. 👍

 

Secondly, and this isn't intended as sarcasm, but have you searched these forums for "excel date", or "convert excel date", or something similar? This has come up a *lot* and you'll easily find what you need here.

 

https://powerusers.microsoft.com/t5/forums/searchpage/tab/message?filter=location&q=convert%20excel%...

 

Please do see where I said 'something similar' and not just take it literally, do a little looking around, I'm sure you'll find what you need. 😉

 

More to the point, if you just do a StartPage on excel date format, it should help you understand how to interpret how excel stores dates. Then all you need to do is perform the requisite date formatting in Power Automate.

 

This search lead me to this page, which states:

 

Excel stores dates as sequential serial numbers so that they can be used in calculations. By default, January 1, 1900 is serial number 1, and January 1, 2008 is serial number 39448 because it is 39,447 days after January 1, 1900.

So rather than working with whatever dates you're currently getting perhaps parsing that literal number is going to be easier. Obviously that's not the full thing, but it leads you where you'd need to go. For example, times are stored after a full stop, making it a floating point number, like 39448.625 will be 15:00 on that date.

 

Lastly, and this is one that you'll probably already know, and feel keenly, but if this information is being kept in an excel worksheet, then there's a very strong chance that it's being kept in the wrong place. Consider migrating the data to a SharePoint list (even easier to work with and make) where you can easily define date information, and perform much of the work that the excel sheet does with far greater ease.

---

 

Now, if the date is coming through into a Power Automate Excel action, and showing as that, then the date in the original sheet isn't provided with a time.

 

However, in my experience, unless the actual column in excel has been formatted to send the date in a text format, then you'll need to convert that number yourself. So, again, in my experience, if you absolutely have to work with excel, then create a 'helper column' in the original sheet which has the right format of text data from the crazy excel nonsense.

 

Once you have done that, then date formatting in PA is easily done with either the Convert Time Zone action (make both zones the same if you don't need to convert time zone) or by using a formateDateTime() function within an expression in a flow. Full documentation on that function is here, with format options here (custom).

 

Here's an example, where EXCEL_DATE should point to the date from the excel sheet, that will create a proper ISO date:

formatDateTime(addseconds('1899-12-30',int(formatnumber(mul(float(EXCEL_DATE),86400),'0'))), 'o')

Hi @eliotcole Thanks for your response. I did try to search the forum and try lots of different methods unfortunately losing two days of my life to it 😛

 

I have tried playing around with the format date and time but have the following error. Any ideas?

image 2.png

 

It appears to now be getting the date and time in the correct format below but doesn't like it still.

 

image 1.png

 

 

image 3.png

 

image 4.png

 

Start Time = formatDateTime(addDays('1899-12-30', int(items('Apply_to_each')?['Start Date/Time'])),'dd/MM/yyyy hh:mm')

 

End Time =  formatDateTime(addDays('1899-12-30', int(items('Apply_to_each')?['End Date/Time'])),'dd/MM/yyyy hh:mm')

 

 

image 5.png

 

Excel Source

image 6.png

 

eliotcole
Super User
Super User

I think you're formatting it wrongly, @tommoseley, when in doubt go ISO8601, or 'o' as it's known in the system. That will format it to the correct yyyy-MM-ddThh:mm:ss.0000000Z way which all applications will recognise (barring excel, of course, which is just silly) and use accurately. 

 

Also, if you really want to keep things super accurate, use the seconds, as per my example. Plus, like I said, your Excel source doesn't have times in there, so that's why they're all 00:00. 🙂

 

Also, again, get all of this stuff out of that Excel sheet and into a SharePoint/Microsoft list. 👍 It's the right place for the information, it's easier to manage, set-up, and append to, plus you can have it export to excel for anyone that still needs that legacy stuff. Excel is a calculator, not an information store. 😉

I tried that approach using the following expression in the Start date field on "Create event"

formatDateTime(addseconds('1899-12-30',int(formatnumber(mul(float('Start Date/Time'),86400),'0'))), 'o')

 

But get the error:

InvalidTemplate. Unable to process template language expressions in action 'Create_event_(V4)' inputs at line '0' and column '0': 'The template language function 'float' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'.
 
Unfortunately the source data is auto created from another application but this can only be done to excel. I tried importing from excel to a sharepoint list but hit issues with the date again and random empty cells in the table causing it to crash.

I've had a look through the forum again and tried recreating the flow, opening it in incognito mode and changing the source but still comes up with the following error.

 

InvalidTemplate. Unable to process template language expressions in action 'Create_event_(V4)' inputs at line '0' and column '0': 'The template language function 'float' was invoked with a parameter that is not valid. The value cannot be converted to the target type.'.

tommoseley
Frequent Visitor

Nearly there. I've managed to get it to sync across to the calendar by using compose to generate the start and end times using formatDateTime(item()['Start Date/Time'],'o')

 

However, it created the events 1 hour later than specified in the time field. e.g. event from 8am to 6pm gets added as 9am to 7pm.

 

tommoseley_0-1659514963431.png

 

I have tried using the convert time zone but London shows up as UTC +0, which is what I believe it calculates in anyway so I'm not sure what to set the values as so that it still works when the clocks go forward and backwards as part of GMT?

Like I said before, if you're doing it using the 'Convert time zone' action, then you should use the same one for source and destination. However you'll also need to know what your timezone is set to in the Power Automate settings, and ensure that it is the same as that.

 

I recommend just using whatever you're putting in, no conversion. Also ... show what you have done to get whatever is in the 'Outputs' in that screenshot.

 

There's no reason why an extra hour should appear out of nowhere on your time if taken from the excel sheet properly.

Helpful resources

Announcements

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!    

Welcome to the Power Automate Community

You are now a part of a fast-growing vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun.   Now that you are a member, you can enjoy the following resources:   Welcome to the Community   News & Announcements: The is your place to get all the latest news around community events and announcements. This is where we share with the community what is going on and how to participate.  Be sure to subscribe to this board and not miss an announcement.   Get Help with Power Automate Forums: If you're looking for support with any part of Power Automate, our forums are the place to go. From General Power Automate forums to Using Connectors, Building Flows and Using Flows.  You will find thousands of technical professionals, and Super Users with years of experience who are ready and eager to answer your questions. You now have the ability to post, reply and give "kudos" on the Power Automate community forums. Make sure you conduct a quick search before creating a new post because your question may have already been asked and answered. Galleries: The galleries are full of content and can assist you with information on creating a flow in our Webinars and Video Gallery, and the ability to share the flows you have created in the Power Automate Cookbook.  Stay connected with the Community Connections & How-To Videos from the Microsoft Community Team. Check out the awesome content being shared there today.   Power Automate Community Blog: Over the years, more than 700 Power Automate Community Blog articles have been written and published by our thriving community. Our community members have learned some excellent tips and have keen insights on the future of process automation. In the Power Automate Community Blog, you can read the latest Power Automate-related posts from our community blog authors around the world. Let us know if you'd like to become an author and contribute your own writing — everything Power Automate-related is welcome.   Community Support: Check out and learn more about Using the Community for tips & tricks. Let us know in the Community Feedback  board if you have any questions or comments about your community experience. Again, we are so excited to welcome you to the Microsoft Power Automate community family. Whether you are brand new to the world of process automation or you are a seasoned Power Automate veteran - our goal is to shape the community to be your 'go to' for support, networking, education, inspiration and encouragement as we enjoy this adventure together.     Power Automate Community Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip | How to Report Spam in Our Community

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

Users online (3,295)