QGIS: Replace All NULL Values in A Column Using (Calculated) Values from Other Column(s)

Поделиться
HTML-код
  • Опубликовано: 12 сен 2024
  • #qgis #qgistutorials #gis #gis
    If you like my video and think it is helpful, please consider buying me a coffee (paypal.me/Geon....

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

  • @badalpokharel6270
    @badalpokharel6270 3 года назад +1

    Thank you for such a good explanation.

    • @DataVisFun
      @DataVisFun  3 года назад

      You are always welcome :)

  • @samarattaher4978
    @samarattaher4978 3 года назад

    Thank you for this video

  • @QeisAhmad
    @QeisAhmad 2 года назад

    hallo sir can i get the code block here, cause i can't see it clearly, thanks sir

    • @DataVisFun
      @DataVisFun  2 года назад

      Sure. Please note that in this video I am just giving a very simple example. I want EP95 to be equal to (DP+DM)/2 when EP95 is NULL. Or else EP95 keeps its original value. So the codes are:
      CASE
      WHEN "EP95" IS NULL THEN ("DP"+"DM")/2
      ELSE "EP95"
      END
      Note that the column names are quoted.

  • @abdullahmohammed4737
    @abdullahmohammed4737 3 года назад

    This should not take a minute to explain. Thanks tho

    • @DataVisFun
      @DataVisFun  3 года назад +1

      Thank you for your thought :)