Mikhail

Forum Replies Created

Viewing 15 posts - 4,216 through 4,230 (of 6,139 total)
  • Author
    Posts
  • in reply to: formula input #5015
    Mikhail
    Moderator

    Works like a charm but I’m limited to 100 symbols in formula input.

    To shorten, try this:

    public double OR(params int[] cnlNums)
    {
    foreach (int cnlNum in cnlNums)
    {
      if (Val(cnlNum) > 0 && Stat(cnlNum) > 0)
        return 1;
    }
    return 0;
    }

    Example of formula using is OR(1,2,3,4,5)

    • This reply was modified 6 years, 11 months ago by Mikhail.
    in reply to: formula input #5006
    Mikhail
    Moderator

    Hi,
    Try the formula like that:

    public double OR(params double[] inputs)
    {
    foreach (double input in inputs)
    {
      if (input > 0)
        return 1;
    }
    return 0;
    }

    Note: I don’t test formulas on the forum. In case of error, please provide error message from the Server log.

    in reply to: export data to MS SQL #5003
    Mikhail
    Moderator

    Try to find out what was changed in your system. Check SQL scripts in the module configuration.

    in reply to: Scheme Editor #5002
    Mikhail
    Moderator

    I meant if you click a component in a list of available components. To cancel the selection, click a pointer.

    in reply to: Webstation day change #5001
    Mikhail
    Moderator

    Many users ask for this feature. I suppose, we will implement it, but I can’t say when.

    in reply to: PenTest #5000
    Mikhail
    Moderator

    Hi,
    You can deploy it on your server and perform penetration testing.

    in reply to: Scheme Editor #4995
    Mikhail
    Moderator

    Hello,

    Click pointer if you need to deselect a component that is recently clicked.

    in reply to: Time Out #4994
    Mikhail
    Moderator

    Hello,

    Try this recommendation.

    in reply to: Webstation day change #4993
    Mikhail
    Moderator

    Hello,
    You need to manually select the next day. Would you like the application automatically switch a day?

    in reply to: Elastic Report and Chart Export function through iPad #4977
    Mikhail
    Moderator

    Hello,

    Right now, the Elastic Report page is fully functional when viewed using iOS device.

    I am very glad. What application is used by iPad to open PDF and Excel?

    Do you have any idea how to address the issue of ‘Export’ option not appearing in the Chart window when viewed using iOS device?

    Open C:\SCADA\ScadaWeb\plugins\ChartPro\js\chartproform.js
    Find $("#hlExport").parent().addClass("hidden"); // hide Export menu item and comment or remove it.

    in reply to: Elastic Report Flexibility #4973
    Mikhail
    Moderator

    You need an input channel that stores max. value of each day. Than use this channel in your report configuration file.

    in reply to: Send data from server to Device Modbus #4972
    Mikhail
    Moderator

    Hi,

    You need:
    1. Add commands in your Modbus template.
    2. Check that the commands work well in Communicator.
    3. Create output channels in Administrator to send commands from Server and Webstation.

    in reply to: Averaging formula #4969
    Mikhail
    Moderator

    The new formulas for moving (rolling) averaging are shared here. Thanks a lot to Horacio for sponsorship.

    in reply to: Elastic Report and Chart Export function through iPad #4968
    Mikhail
    Moderator

    Hello,

    However, I am unable to click on the select-box for the formats ‘Excel’, ‘PDF’, ‘HTML’.

    The old scripts may be cached. Can you clear browser cache on iPad?

    in reply to: Elastic Report and Chart Export function through iPad #4964
    Mikhail
    Moderator

    replace the first line of the fragment to
    if (false && scada.utils.iOS())

    The features should be enabled on iPad. How do they work?

Viewing 15 posts - 4,216 through 4,230 (of 6,139 total)