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

Get Fabric Certified for FREE during AI Skills Fest. This week only. Secure your voucher now.

Reply
mpicca13
Resolver IV
Resolver IV

Concatenate currency symbol with price and retain conditional formatting

I have a fact table which contains 2 columns, selling price(Currency Type) and Currency (String).

currency can either be (USD, CAD, MXN).

 

Is it possible with DAX to concatenate the two and still retain conditional formatting in a matrix for price ranges?

I would like to do this without further normalizing into a seperate dim_currency table.

4 REPLIES 4
Anonymous
Not applicable

Hi @mpicca13 ,

You can follow the below steps to achieve it, you can find the details in below screenshot:

1. Create a measure to set the color by conditions base on field [Selling price]

2. Create a measure or calculated column to concatenate the field [Selling price] and [Currency]

Concatenate = CONCATENATE(CONCATENATE('Table'[Currency]," "),'Table'[Selling price])//calculated column​
Measure= CONCATENATE(CONCATENATE(MAX('Table'[Currency])," "),MAX('Table'[Selling price]))

3. Set the conditional formatting for the concatenate field use the conditional formatting measure

Concatenate currency symbol with price and retain conditional formattin.JPG

Best Regards
Rena
Community Support Team _ Rena Ruan
If this post helps, then please consider Accept it as the solution to help the other members find it more.

 

 

@Anonymous Thank you for the suggestions. Calculated columns are not an option here, that dataset is too large. I've tried with the  easure as you suggested but the performance is very bad. Resulted in Dax timing of 37,000 MS.

anandav
Skilled Sharer
Skilled Sharer

You can use Condition Formatting based on the Currency field for the new concatenated field.

 

Not sure whether this is what you are after or I am not getting your requirement.

 

amitchandak
Super User
Super User

@mpicca13 , if you append like a text then it will become text. You can not do numeric operations after that. If possible keep the currency column in a separate column. If there is a single currency then you can use option under format in Measure/column tools

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.