Reply

Hilda

New Member
I am super new to actuate and my question to all the gurus is: Can I hide the rows if there is no data in them. The reason why I am asking is in some cases the data might exists in field (and I need to show it on report) and in some case there is no data...No is it possible to hide the fields if there is no value in them?
 

drk

New Member
In the finish method of the control, do this:

If DataValue = 0 Then
Size.Height = 0
Size.Width = 0
End If

Alternatively, you can also just make the Font.Color = White if the condition is met, instead of changing the dimensions of the control.
 
Top