Hi @ashrenee8301
To check if the measure is empty, you can use function isEmpty()
The formula would be this:
CASE WHEN
IsEmpty([Measures].[Issues created])
THEN
"<i class='far fa-check-square'></i>"
WHEN
[Measures].[Issues created] > 0
THEN
"<i class='far fa-circle'></i>"
END
In the report:
Also, see more information about markdown here: https://community.eazybi.com/t/measure-formatting-markdown-and-custom/
Best,
Gerda // support@eazyBI.com