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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
nwanko
Frequent Visitor

Set Google Adword Costs in currency

Hi all,

 

I connect Power BI with Google Analytics to get Adword data, I fetch the costs per week of the year. I get the data through 7 queries from individual accounts (Google data per label) which I want to combine. However the costs per label are all in local currency. Anyone a suggestion how to extract all the data in EURO? When I make a report within Google Adwords this happens automatically... Can I add a tag after "ga:adCost"?

 

let
Bron = GoogleAnalytics.Accounts(),
#"XXXXX" = Bron{[Id="XXXXX"]}[Data],
#"UA-XXXX" = #"XXXXX"{[Id="UA-XXXXXXX"]}[Data],
#"YYYYYY" = #"UA-XXXXXX"{[Id="YYYYYYYY"]}[Data],
#"Added Items" = Cube.Transform(#"YYYYYYY",
{
{Cube.AddAndExpandDimensionColumn, "ga:yearWeek", {"ga:yearWeek"}, {"Week of Year"}},
{Cube.AddMeasureColumn, "Cost", "ga:adCost"}
}),
#"Added Custom" = Table.AddColumn(#"Added Items", "Label", each "website_name.no")
in
#"Added Custom"

2 REPLIES 2
dax
Community Support
Community Support

Hi @nwanko , 

As I know, there is no currrency type in Change Type, you could try to convert the number typr to Europe Type , then add a currency symbol.755.PNG

Or you could change this in Design pane like below

756.PNG

 Or you also could try Currency.From to see whether it work or not. You could refer to currency-from  for details.

Best Regards,
Zoe Zhi

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

nwanko
Frequent Visitor

Many thanks @Zoe Zhi!

 

I think you refer to adding symbols in Power BI but do you think this could result in converted currencies (I want to convert various currencies all to euro)? Any experience in forcing Google Analytics to supply a specific currency (instead of the main currency of the Google account?)

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Kudoed Authors