#Tableau

แชร์
ฝัง

ความคิดเห็น • 33

  • @andreriley739
    @andreriley739 2 ปีที่แล้ว +7

    I'm a key believer in returning to the fundamentals, which sometimes allow us to question our routines and biases. I've personally never liked using CASE statements (for not being as explicit as IF) in tableau but never really understood how it differed from If statements so this was a big help...in confirming why I don't like them lol.

    • @vizwiz
      @vizwiz  2 ปีที่แล้ว +1

      I agree that case are less familiar. What I write for myself will sometimes be different than my audience. If I suspect they might not understand CASE, I'll us an IF.

  • @AndyCotgreave
    @AndyCotgreave ปีที่แล้ว +5

    These videos are such an amazing step up in production quality. Love it! Keep 'em coming, Andy

    • @vizwiz
      @vizwiz  ปีที่แล้ว +3

      Cheers Andy! I wish I had hired an editor ages ago.

  • @analystmommy
    @analystmommy ปีที่แล้ว

    thank you so much Andy .I just started watching your videos .I love how you shared multiple information in a single video . Many thanks for the video

    • @vizwiz
      @vizwiz  ปีที่แล้ว

      You are very welcome

  • @matheusluiz6
    @matheusluiz6 9 หลายเดือนก่อน

    Great vídeo!!!

  • @cococnk388
    @cococnk388 ปีที่แล้ว

    Thanks Andy. You and Donabel Santos are the best on Tableau stuff

    • @vizwiz
      @vizwiz  ปีที่แล้ว

      Glad you like them!

  • @pallawichaudhari
    @pallawichaudhari 2 ปีที่แล้ว +1

    Very helpful. Quick tips for fast life 😄

    • @vizwiz
      @vizwiz  2 ปีที่แล้ว

      Glad you think so!

  • @mehabubshaikh9178
    @mehabubshaikh9178 ปีที่แล้ว

    hi Andy kriebel very good explain basics of calculations

    • @vizwiz
      @vizwiz  ปีที่แล้ว

      Glad it was helpful!

  • @jacekjmm
    @jacekjmm ปีที่แล้ว +2

    In some cases I do something like that:
    CASE TRUE
    WHEN [Sales]>=0 THEN 'High sales'
    WHEN [Sales]

    • @vizwiz
      @vizwiz  ปีที่แล้ว +2

      Someone else pointed that out to me today too. I didn't know they could be written that way. I find the logic tougher to follow than an IF would be though.

  • @romanvasiura6705
    @romanvasiura6705 ปีที่แล้ว

    Thank you for this great video lesson)

  • @adarshgochhayat2374
    @adarshgochhayat2374 2 ปีที่แล้ว +3

    Hi Andy, love your videos. keep up the great work. A request here, can you please make a video on most common functions and scenarios you must have come across till now. I mean the most used date functions, logical functions etc. If not video may be blog or something. In case you have already done something like that kindly guide me to the link or resource. Thanks and again appreciate what you are doing for community.

    • @vizwiz
      @vizwiz  2 ปีที่แล้ว

      That's really an impossible question to answer. I posted a video last week on date functions.

  • @PatrickBateman12420
    @PatrickBateman12420 ปีที่แล้ว

    Love those "fundamental" videos. I'm emberassed to say, but I failed to predict the Null output for IF THEN w/o ELSE.

  • @danmcintyre9702
    @danmcintyre9702 2 ปีที่แล้ว +1

    Thank you for the video. I learned a couple of new things! One thing that I've struggled with as SQL user in Tableau is the structure of the case statements. I use "IN" often to match against multiple values (case when [field] in ('value1', 'value2', etc.)...) and I haven't found a way to do this in Tableau without creating a when/then for each value. Perhaps there's a better way?

    • @vizwiz
      @vizwiz  2 ปีที่แล้ว

      IN is a function indeed. I would use it in an IF statement instead.

    • @andriykabanets4493
      @andriykabanets4493 ปีที่แล้ว +1

      Dan:
      ---
      CASE [Region]
      WHEN IN ('East','West') THEN [Sales]
      END
      ---
      or you can do it in a simple one row:
      IIF(Region IN ('East','West'),[Sales],0)

  • @Ibad_gamer937
    @Ibad_gamer937 2 ปีที่แล้ว +1

    Interesting.

    • @vizwiz
      @vizwiz  2 ปีที่แล้ว +1

      Glad you think so!

  • @mikebrown2989
    @mikebrown2989 2 ปีที่แล้ว +1

    Can you make a video about the efficiency of each function as well? Because I'm comfortable using any of these functions, but maybe I want to use a CASE statement rather than an IF statement because Tableau processes it faster, or something like that.

    • @vizwiz
      @vizwiz  2 ปีที่แล้ว

      That's completely dependent on your data source. One thing to keep in mind is that IF statements always check a true/false condition whereas a CASE compares to a string. I would expect an IF to be faster.

  • @jennielear
    @jennielear ปีที่แล้ว +1

    Why did tableau have to restructure Case statements. It’s one of the many reasons I like it much less than any other vis tool

    • @vizwiz
      @vizwiz  ปีที่แล้ว +2

      I don't follow. How was it restructured? Do you mean the syntax is different than other tools?

    • @jennielear
      @jennielear ปีที่แล้ว

      @@vizwiz yes. We all familiar with case when then… case [field] when = x
      Just stick to the standards tabby please

  • @hnjonesf
    @hnjonesf ปีที่แล้ว

    Is there a performance difference between if and case?

    • @vizwiz
      @vizwiz  ปีที่แล้ว

      Negligible performance benefits for a case statement.

  • @raygivler
    @raygivler ปีที่แล้ว

    IIF() should have been called ITE(). There, I said it.

    • @vizwiz
      @vizwiz  ปีที่แล้ว

      🤦🏻‍♂️