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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Troyvan
Helper I
Helper I

Adding new column and converting from AU to NZ dollar

Hi, 

 

I have a table with the following column - Account, Date and Value

The Account column contains AU and NZ

I want to create a new column and filter all values under AU and multiply by 1.11 to convert to NZ dollar. 

 

I'm thinking of just manually converting it for now by putting the exchange rate every month but I can't seem to come up with the right formula to add this column. If you can help me add this, that would be greatly appreciated. 

 

Or better yet, if anyone know how can I dynamically select values under AU account and convert to NZ, that would be epic. Thank you. 

 

Cheers,
Vanessa

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Troyvan 
You can create a new calculated column using dax
New Column >
NZ Value = IF ( TableName[Account] = "AU", TableName[Value] * 1.11, TableName[Value] )

View solution in original post

7 REPLIES 7
Ashish_Mathur
Super User
Super User

Hi,

Share your actual table and the exchange rate table.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @Ashish_Mathur , 

 

This is what my data looks like.  

 

AccountFinance CostYear - MonthValueDate
AUNZ SoftwareJan - 2201/01/2022
AUNZ SoftwareFeb - 2201/02/2022
AUNZ SoftwareMar - 2201/03/2022
AUNZ SoftwareApr - 2201/04/2022
AUNZ SoftwareMay - 2201/05/2022
AUNZ SoftwareJun - 2201/06/2022
AUNZ SoftwareJul - 2201/07/2022
AUAU DiscretionaryAug - 2201/08/2022
AUAU DiscretionarySep - 2201/09/2022
AUAU DiscretionaryOct - 2201/10/2022
AUAU SoftwareNov - 2201/11/2022
AUAU SoftwareDec - 2201/12/2022
AUAU SoftwareJan - 2301/01/2023
AUAU SoftwareFeb - 2301/02/2023
AUAU SoftwareMar - 2301/03/2023
AUAU SoftwareApr - 2301/04/2023
AUAU DiscretionaryMay - 2301/05/2023
AUAU DiscretionaryJun - 2301/06/2023
AUAU DiscretionaryAug - 2301/08/2023
AUNZ DiscretionarySep - 2301/09/2023
AUNZ DiscretionaryOct - 2301/10/2023
AUNZ DiscretionaryNov - 2301/11/2023
AU

NZ Discretionary

Dec - 2301/12/2023

 

My exchange  table looks like this. 

 

AUDNZD

1 AUD1.11012 NZD

 

I got this exchange rate table from this site below but I'm not sure if this will update in my power Bi dynamically and how I can use it to dyanmically convert row in AUD to NZD?

1 AUD to NZD - Australian Dollars to New Zealand Dollars Exchange Rate (xe.com)

Your help is greatly appreciated. Thanks! 

 

 

Cheers,
Troy

 

Hi,

Why are there 0's in the Value column?  In the exchange rate table shouldn't there be a Date column.  Share complete information and show the expected result very clearly


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Hi @Ashish_Mathur 

I want to be  able to add a new column  $NZD = If( Account ="AU", Value * NZD Exchange Rate - this should dynamically update with the current exchange rate), similar to this: 

AccountFinance CostDateYear - MonthValue$NZD
NZNZ Software1/01/2022Jan - 2210001000
NZNZ Software1/02/2022Feb - 2210001000
AUAU Discretionary1/10/2022Oct - 2210001000
AUAU Software1/11/2022Nov - 2210001110
AUAU Software1/03/2023Mar - 2310001110
AUAU Software1/04/2023Apr - 2310001110
AUAU Discretionary1/08/2023Aug - 2310001110
NZNZ Discretionary1/09/2023Sep - 2310001110

My exchange rate table from  https://www.xe.com/currencyconverter/convert/?Amount=1&From=AUD&To=NZD is this: I don't know how to add date column from here 

Troyvan_4-1659371121279.png

I imported table from the web, would that mean it should update automatically? How can I use it? So sorry I'm just really starting to learn Power Bi. Really appreciate your help. Thanks! 

Cheers,

Troy

tamerj1
Super User
Super User

Hi @Troyvan 
You can create a new calculated column using dax
New Column >
NZ Value = IF ( TableName[Account] = "AU", TableName[Value] * 1.11, TableName[Value] )

Thanks @tamerj1 

 

Instead of manually changing the exchange rate value to multiply it to to convert to $NZ, any advise on how I can do it dynamically? Like multiplying it to updated exchange rate on any website? Thanks! 


Cheers,

Troy

@Troyvan 

You can add a date column to the exchange table and link it to the date table. New record with new date can be added to the table. But your idea sound much more interesting I would also love to know if this possible. 

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors