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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
WinterGarden
Helper III
Helper III

Dax for displaying all the values in a column in "html text styler" visual

How to display all the values in a specific column in "html text styler" visual?
By using below measure, i can only display one value, but i need to display all the values in that specific column:

#insight moving =

var _calculatedmes = FIRSTNONBLANK(cr304_onelineinsights[Newquery],"")

RETURN  "<marquee direction='UP'>"&_calculatedmes&" </marquee>"

 

1 REPLY 1
DataInsights
Super User
Super User

@WinterGarden,

 

Try a measure like this:

 

#insight moving =
CONCATENATEX (
    cr304_onelineinsights,
    VAR vNewquery = cr304_onelineinsights[Newquery]
    RETURN
        IF (
            NOT ISBLANK ( vNewquery ),
            "<marquee direction='UP'>" & vNewquery & " </marquee>"
        ),
    // insert delimiter here
    " "
)

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Top Solution Authors