Skip to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Parsing Data

Featured Replies

Happy Saturday everyone!

Unfortunately, my "raw" data looks like this:

9/1/2005 6:05:11

In one cell in an Excel spreadsheet.

Can I parse this data on import so I can get date and time stamp in seperate fields?

I have to admit, I don't know how to parse, and am trying to learn.

Any help?

Steve

What happens if you import this into a TimeStamp field?

If Lee's answer doesn't help, try this:

In Excel, copy the column and paste it into Word.

In Word, convert the resulting table to text.

Replace " " with "^t". This turns the space to a tab.

Copy the result. Return to Excel. Insert a new column or two (depending on whether you want to keep the original data or not), and paste the tabbed info in. Excel will columnize your info (be wary of how Excel formats the data...)

HTH,

David

If you want to do this all in FileMaker make 2 additional fields either calculation or autoenter by calculation. A date field and a time field. Assuming that the data is always formatted as you show there is space between the date and the time. We will use this space to separate the two.

We will use the GetAsDate, Left & Position functions to get the date.

Date = GetAsDate(Left(Data, Position(Data; " "; 1; 1) - 1))

We will use the GetAsTime, Right, Lenght & Position functions to get the time.

Time = GetAsTime(Right(Data; Length (Data) - Position(Data; " "; 1; 1)))

Data is the raw data from the import.

  • Author

Thanks for the help guys....It is appreciated.

Steve

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.