Forum Discussion
Amjad1002
3 years agoHelper III
How Signal Light flashing
Hello Folks, I am trying me make my report where signal light in Red flash. I checked some old posts but it is based on HTMl files I believe. If anyone know how to set up blinking the signal light ...
Greg_Deckler
3 years agoCommunity Champion
Amjad1002 So I typically control that with a Flag measure or something similar. So you create a Flag measure like:
Flag = if (sum(Sales[Sales])<[Target],1,0)
Or perhaps in your case something like:
Flag = if (sum(Sales[Sales]) > 1200,1,0)
Then this part of the SVG measure controls whether the graphic is displayed or not:
RETURN IF([Flag],__header & __shapeTextCircle & __footer,"")
So if the Flag is 1 then you display the image, otherwise just return BLANK or an empty string ""
Amjad1002
3 years agoHelper III
RETURN IF([Flag],__header & __shapeTextCircle & __footer,"")
Instead of empty I want to show Green circle without flasing.
is that possible ?