The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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>"
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
" "
)
Proud to be a Super User!