Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
kmanyam
Frequent Visitor

Unable to pull Google BIG QUERY (GCP) Datetime columns to Power BI desktop

Hello there , I am unable to pull  Google BIG QUERY (GCP) Datetime columns to Power BI , How do we workaround this issue.

Seeing the following error . Issue is mentioned in the official site (https://learn.microsoft.com/en-us/power-query/connectors/google-bigquery#unable-to-authenticate-with...

just seeing if there is any update on this 

 

kmanyam_0-1721754492689.png

 

3 REPLIES 3
kmanyam
Frequent Visitor

It worked only once , i tried to do again , it threw the same error.

Anonymous
Not applicable

Hi @kmanyam ,

Do you still get the same error message even if you use custom query and load into Power BI after converting all the fields that were originally of datetime type to date or text type? Could you please provide the related SQL query and screenshot with error message for further troubleshooting? Thank you.

Best Regards

Anonymous
Not applicable

Hi @kmanyam ,

You can use a custom SQL query within Power BI to convert the datetime columns into a format that Power BI can handle(for example: Date or Text).

vyiruanmsft_0-1721810349475.png

Convert the type of datetime column as Text:

SELECT 
    CAST(datetime_column AS STRING) AS datetime_column_str,
    other_columns
FROM 
    your_table

Convert the type of datetime column as Date:

SELECT 
    CONVERT(date,datetime_column) AS datetime_column_str,
    other_columns
FROM 
    your_table

Best Regards

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.