Graphics

 View Only
Expand all | Collapse all

If Datalinq returns empty on null then set text to 0

  • 1.  If Datalinq returns empty on null then set text to 0

    Posted 03-06-2018 17:14
    Is there a script or visual logic function to set the empty text object to 0 if the value is null? We display stats for AVG, HR, & RBI and the stat file outputs empty when there is no data. I'd like to change to the empty value to 0.


  • 2.  RE: If Datalinq returns empty on null then set text to 0

    Posted 03-06-2018 17:39
    You can use something like this.

    if text = Nothing then
    text = "0"
    End If
    #XPression


  • 3.  RE: If Datalinq returns empty on null then set text to 0

    Posted 03-06-2018 18:15
    Thank you
    #XPression