SOLVED
Date
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Aleksandar1
7 - Meteor
‎05-31-2023
01:29 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
I need the workflow to convert any type to date type yyyy-mm
Solved! Go to Solution.
Labels:
- Labels:
- Apps
3 REPLIES 3
FrederikE
13 - Pulsar
‎05-31-2023
01:51 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hey @Aleksandar1,
What exactly do you mean by "any type"?
There are so many possible options to write a date, there is no workflow that captures everything.
Please specify what you require.
‎05-31-2023
02:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
My enduser needs to enter the date in the form yyyy-mm, but I want to have control so that if he enters it in any other way, it will output to me in the format yyyy-mm
Raj
16 - Nebula
‎05-31-2023
02:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
DateTimeFormat(DateTimeParse([Field1], "%d-%m-%Y"), "%Y-%m")
use this to get output as 1997-09
