google data studio parse date

PARSE_DATE("%x", DateText)

PARSE_DATE(format_string, text)

Parameters
format_string - See Supported Format Elements For DATE for a list of format elements that this function supports.
				}-https://cloud.google.com/bigquery/docs/reference/standard-sql/date_functions#supported_format_elements_for_date
text - a text representation of a date.

Return data type
Date

Example
In this example, DateText is a field containing a text date. The result of applying PARSE_DATE with the correct format_string is a Date value.

DateTimeText	
25/12/08

Formula	
PARSE_DATETIME("%d/%m/%Y", DateTime)

Result
2008-12-25


Notes
When using PARSE_DATETIME, keep the following in mind:

Unspecified fields. Any unspecified field is initialized from 1970-01-01.
Case insensitive names. Names, such as Monday, February, and so on, are case insensitive.
Whitespace. One or more consecutive white spaces in the format string matches zero or more consecutive white spaces in the date string. In addition, leading and trailing white spaces in the date string are always allowed -- even if they are not in the format string.
Format precedence. When two (or more) format elements have overlapping information (for example both %F and %Y affect the year), the last one generally overrides any earlier ones.

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source