Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Community,
In Power BI, conditional formatting affects the whole cell - therefore, all concatenated values receive the same style. Because of this you cannot highlight or emphasize separate parts of the text, which lowers readability and weakens the story.
Current limitation
ConcatenatedValue =
[Area] & " - " & [Components] & " - " & [Issues]
I introduce a new DAX function, for example TextStyle() or RichText(), that lets developers give parts of a joined string their own color or style, like bold, italic or underline.
The function would apply the format only to the chosen pieces - one cell can hold one string that shows multiple kinds of text treatment right away.
Proposed enhancement
ConcatenatedValue =
TextStyle([Area], "Color=Black;Bold=True") & " - " &
TextStyle([Components], "Color=Red;Condition=ConditionMeasure") & " - " &
TextStyle([Issues], "Color=Blue;Italic=True")
This feature would add to the current conditional formatting - letting users control the color of each part of a text string. In this way Power BI visuals become more powerful, colorful and easy to use.
Thanks for voting 🙌 Together we’ll make Power BI better.
#IdeasDataVitalizer
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.