Tableau - How to replace null with blank or zero using ISNULL function || ISNULL function explained

Опубликовано: 23 Февраль 2018
на канале: Tableau Tip
30,971
85

ISNULL function in Tableau:

ISNULL is a boolean function. Meaning it
returns TRUE or FALSE

SYNTAX: ISNULL(exp1)

It returns true if the exp1 is null
else returns false

Using this function lets replace null
with blanks or string

eg1: exp1 of datatype string
Replace null with NA:
---------------------
if ISNULL([Sub-cateogry])=TRUE then 'NA'
ELSE [Sub-cateogry] END

Replace null with blank:
-----------------------
if ISNULL([Sub-cateogry])=TRUE then ''
ELSE [Sub-cateogry] END

//here keeping =true is optional

eg2: exp1 of datatype int

Lets replace blank in Profit with 0

if ISNULL([Profit]) then 0
ELSE [Profit] END


Смотрите видео Tableau - How to replace null with blank or zero using ISNULL function || ISNULL function explained онлайн без регистрации, длительностью часов минут секунд в хорошем качестве. Это видео добавил пользователь Tableau Tip 23 Февраль 2018, не забудьте поделиться им ссылкой с друзьями и знакомыми, на нашем сайте его посмотрели 30,97 раз и оно понравилось 8 людям.