Hello
I want to Write excel data in Outlook Email Body in UiPath.
I made process following
this Youtube and it works well.
However, I met some problems…
extract Date from excel.
Even though excel only have yyyyMMdd, it write hours,minutes,seconds(00:00:00)
I want to extract only yyyyMMdd. How could it be possible?
txt data overlapped
When it saved excel data to txt, it overlapped. So previous data leaves on txt and write new data on that txt.
I don’t need old data.
How could I delete old text and make new text file or overwritten text file?
extract Date from excel.
Even though excel only have yyyyMMdd, it write hours,minutes,seconds(00:00:00)
I want to extract only yyyyMMdd. How could it be possible? Try preserve format in read range activity.
Before for each row use a write text file activity and pass text as “” .so it will write a empty text on the text file.
You can also try this package for convert excel range to html table,
Hello
first problem solved by using preserve format!
But second one is,
If process runs, it make text file.
But I don’t want to make this text file permanently. I just need this text file temporary for that running.
Is it possible to make text file temporary?