Data Flow. Split Components

Поделиться
HTML-код
  • Опубликовано: 16 сен 2024

Комментарии • 3

  • @ЕндрюКрейн
    @ЕндрюКрейн Год назад

    🔥

  • @enjoycontents157
    @enjoycontents157 3 месяца назад

    I dont understand the inline if condition which you mentioned at 4:16 to 4:20 video marks. Please explain.

    • @SkyviaPlatform
      @SkyviaPlatform  2 месяца назад

      Hello!
      By Inline if we mean using the Conditional operator "? :" in the target component mapping instead of Conditional Split or with it.
      If the boolean condition argument (before the question mark) is true, returns the second argument (after the question mark); otherwise, returns the third argument (after the colon). If the condition is null, the operator returns null.
      For example:
      Addresses == 'London' ?100:1
      Where IF the Address is London the value will be 200.
      IF the Address is not London or NULL the value will be 1

      If you have any further questions, please submit a question or comment here skyvia.com/company/contacts so we can personally advise you on your scenario with detailed instructions.