This discussion has been locked. The information referenced herein may be inaccurate due to age, software updates, or external references.
You can no longer post new replies to this discussion. If you have a similar question you can start a new discussion in this forum.

Choosing Icons in a Modern Dashboard Table Widget

I have a widget in a classic dashboard with case statements that set the icons for various values based on the included logic. For example:

CASE
WHEN MinutesSinceKeepAlive > 2 THEN '/Orion/images/ActiveAlerts/Serious.png'
WHEN MinutesSinceKeepAlive < 2 THEN '/Orion/images/ActiveAlerts/Check.png'
ELSE '/Orion/images/StatusIcons/Small-Up.gif'
END AS [_IconFor_MinutesSinceKeepAlive]

I want to use this same widget in a modern dashboard table widget, but I have been unable to find a format setting that allows me to set icons based on the _IconFor_ values set in my case statements. Is it possible to do this? If so, how do I implement it?