Skip to Main Content
AVEVA™ PI System™ Feedback Portal

Welcome to our feedback site!


We created this site to hear your enhancement ideas, suggestions and feedback about AVEVA products and services. All of the feedback you share here is monitored and reviewed by the AVEVA product managers.

To start, take a look at the ideas in the list below and VOTE for your favorite ideas submitted by other users. POST your own idea if it hasn’t been suggested yet. Include COMMENTS and share relevant business case details that will help our product team get more information on the suggestion. Please note that your ideas and comments are visible to all other users.


This page is for feedback specifically for AVEVA PI System. For links to our other feedback portals, please see the tab RESOURCES below.

Status No status
Created by PhilippEven
Created on Oct 30, 2024

if then else in Analysis still checking/executing both parts

If then else clauses are often used for input filtering for our analysis in AF. We often face the issue that analysis cause errors although the part which should not be executed according to the condition is causing errors.
Example:

"if BadVal('attribute') then '' else TagEU('attribute')" is giving still errros when the attribute is excluded.

  • Attach files
  • Kelsey Bobeck
    Reply
    |
    Nov 13, 2024

    It also doesn't matter what order you your check it, it still doesn't work. For example, the below both fail
    If '..\|NumberOfCommunications' < 2 Then "N/A" Else '..\COM2|State'
    If '..\|NumberOfCommunications' = 2 Then '..\COM2|State' Else "N/A"