Reputation: 99
I have a problem with this GDS connector, when I add my csv-file, configure connector and start working with data, data appears incorrectly. Here it works okay:
But when I add another column, it goes wrong:
You can see code in GitHub repository.
I’m new to GDS connectors, I don’t know how to solve this problem. I tried another connector by Supermetrics and it works fine, but they don’t share their code.
Upvotes: 1
Views: 1211
Reputation: 6471
1) File Upload (Official CSV Connector by Google)
2) Google Sheets (Alternative solution):
IMPORTDATA
: The function imports CSV data from a URLIMPORTDATA
function:3) Fetch CSV Community Connector:
The date
field is currently detected and formatted as a Text field. To ensure that the date
field is a Google Data Studio recognised Date field, create the following Calculated Field that uses the TODATE
function:
TODATE(date, "%Y-%m-%d", "%Y%m%d")
Google Data Studio Report as well as a GIF to elaborate:
Upvotes: 2