Hello,
I am trying to display an icon based on the value of an item in a table.
I am wanting to display either a check, clock, or error icon based on if the status is Completed, InProgress, or Failed respectively.
How can I accomplish this? I have tried a switch function, but it would not work.
I have also tried this here but it was also not working:
If(
"Completed" in cmpALMStatus.LastBuildStatusTest,
Icon.Check,
If(
cmpALMStatus.LastBuildStatusTest = "InProgress",
Icon.Clock,
Icon.Error
)
)
Any help would be greatly appreciated!!