Forum Discussion

avitoriasrocha's avatar
avitoriasrocha
Regular Visitor
3 years ago
Solved

How to show zero values in a matrix

Hello guys! I need a lot of help with the following: In an matrix, I put the priority as a criterion and the rankings as follows in the image: In this case, there is also a priority "Critica...
  • PabloDeheza's avatar
    3 years ago

    Hi avitoriasrocha !
    Try an if condition like:

    IF(
    	value = BLANK(),
    	0,
    	value
    )

    Let me know if that helps!