Forum Discussion
NelsonY
3 years agoRegular Visitor
Mysterious empty row in Matrix/Table
My visual is working fine with referencing the measure directly. It produce a blank line when I branching from it. I need help to get rid of the blank line from the branched measure. I...
tamerj1
3 years agoCommunity Champion
Hi NelsonY
The engine creates this line automatically to resolve the measure's blank value even if it does not actually exist. The reason is that the comparison operator forces all values including BLANK similar to adding 0 for example. You may try
t1 =
VAR CurrentValue = [Last 70 Avg Max Host Cpu Usage]
RETURN
IF ( NOT ISBLANK ( CurrentValue ), CurrentValue > 0.5 )
NelsonY
3 years agoRegular Visitor
No. Still not working.