These videos are such an amazing step up in production quality. Love it! Keep 'em coming, Andy
@vizwiz2 жыл бұрын
Cheers Andy! I wish I had hired an editor ages ago.
@cococnk388 Жыл бұрын
Thanks Andy. You and Donabel Santos are the best on Tableau stuff
@vizwiz Жыл бұрын
Glad you like them!
@andreriley7392 жыл бұрын
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.
@vizwiz2 жыл бұрын
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.
@analystmommy2 жыл бұрын
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 Жыл бұрын
You are very welcome
@romanvasiura6705 Жыл бұрын
Thank you for this great video lesson)
@pallawichaudhari2 жыл бұрын
Very helpful. Quick tips for fast life 😄
@vizwiz2 жыл бұрын
Glad you think so!
@danmcintyre97022 жыл бұрын
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?
@vizwiz2 жыл бұрын
IN is a function indeed. I would use it in an IF statement instead.
@andriykabanets44932 жыл бұрын
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)
@matheusluiz6 Жыл бұрын
Great vídeo!!!
@adarshgochhayat23742 жыл бұрын
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.
@vizwiz2 жыл бұрын
That's really an impossible question to answer. I posted a video last week on date functions.
@mikebrown29892 жыл бұрын
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.
@vizwiz2 жыл бұрын
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.
@PatrickBateman124202 жыл бұрын
Love those "fundamental" videos. I'm emberassed to say, but I failed to predict the Null output for IF THEN w/o ELSE.
@mehabubshaikh9178 Жыл бұрын
hi Andy kriebel very good explain basics of calculations
@vizwiz Жыл бұрын
Glad it was helpful!
@jacekjmm2 жыл бұрын
In some cases I do something like that: CASE TRUE WHEN [Sales]>=0 THEN 'High sales' WHEN [Sales]
@vizwiz2 жыл бұрын
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.
@hnjonesf2 жыл бұрын
Is there a performance difference between if and case?
@vizwiz2 жыл бұрын
Negligible performance benefits for a case statement.
@jennielear2 жыл бұрын
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
@vizwiz2 жыл бұрын
I don't follow. How was it restructured? Do you mean the syntax is different than other tools?
@jennielear2 жыл бұрын
@@vizwiz yes. We all familiar with case when then… case [field] when = x Just stick to the standards tabby please
@Ibad_gamer9372 жыл бұрын
Interesting.
@vizwiz2 жыл бұрын
Glad you think so!
@raygivler2 жыл бұрын
IIF() should have been called ITE(). There, I said it.