Amazing andy. such a blessing to the tableau community
@SSJwalker2 жыл бұрын
Agree
@macc45442 жыл бұрын
This channel deserves at least a million subscribers
@vizwiz2 жыл бұрын
Spread the word! 😊
@jordantoups3248 Жыл бұрын
For the DATEDIFF Days Delayed example, I think you said the the logic backwards (starting around 8:10). It looks like the first order was actually shipped 1 day early (on September 18, 2021 instead of September 19, 2021), not delayed by 1 day. On the third line, the product was expected to be shipped September 20, 2021, but was not shipped until October 6, 2021 (making it delayed by 16 days). ** I am still trying to learn so please correct me if I am wrong, but I want to make sure I am comprehending correctly. Thanks for all your work, Andy!
@jordantoups3248 Жыл бұрын
Then in the final calculation for "which weekdays have the most delays", it seems you used the logic of negative days = delayed orders, which is what I was thinking.
@andriykabanets44932 жыл бұрын
Thank you for this video, great explanation as usual ) To make calculation based on integer comparison is better to use DatePart - always returns Integer Task Case: Select all the orders with the ShipDate after 10th of each Month: // iif([DateName_Day] > 10,'Ship after 10th','Other') // >> returns mistake message - can't compare string and integer values // until type conversion will be applied: // iif(INT([DateName_Day])>10,'Ship after 10th','Other') // While DatePart works well from the start: iif([DatePart_Day]>10,'Ship after 10th','Other')
@vizwiz2 жыл бұрын
Yes that’s correct. In the video I say datepart returns an integer and datename returns a string.
@peacelovebella0910 ай бұрын
Thank you so much!! Was looking for help with date diff for so long and this was by far the most straightforward and helpful explanation
@vizwiz10 ай бұрын
Great to hear!
@sowmya64713 ай бұрын
It was very easy to understand on the date function and effective.
@ramkrishna1332 жыл бұрын
Thank you Andy for the amazing introduction to the different date functions. I always used to struggle with date functions. Your video and cheat sheet really helps to simplify a lot of things. You are a gem 😊 Also, kudos to the video editing, it looks very refreshing and cool 👍😊
@vizwiz2 жыл бұрын
Thank you.
@PradeepKumar-wi4ws2 жыл бұрын
Thanks andy , for yr great efford, labour , u are the blessing of people that standing in the last of the row . Made by abs( ❤❤❤) . #india .
@vizwiz2 жыл бұрын
Thank you
@1973youness2 жыл бұрын
Thanks .... Once again Andy Very well explainedd !
@vizwiz2 жыл бұрын
Very welcome
@CerealMJ2 жыл бұрын
Very helpful!! Question: shouldn't the "Is Delayed" calculated field be > 0 and not less than?
@ranadeepghosh18912 жыл бұрын
I also have the same question
@vizwiz2 жыл бұрын
Could be. Either way, you get the idea.
@ranadeepghosh18912 жыл бұрын
@@vizwiz i have been following u for a long time and i look forward to ur videos. Watever i have learnt in tableau its all bcoz of u. I adore ur technical skills and i tell this to everyone. Keep making videos and help us to be good at it.
@pardhasaradhik92342 жыл бұрын
Andy your best tutor , thank you somuch
@vizwiz2 жыл бұрын
I appreciate that 👍🏻
@hnjonesf2 жыл бұрын
Cheat sheet is a simple and powerful way to communicate. Great idea.
@longyanchen37552 жыл бұрын
Amazing video, thanks a lot Andy. I feel much more confident to use them now😊
@vizwiz2 жыл бұрын
Yay!!
@alainponroy26212 жыл бұрын
Thank you Andy for this very interesting video 😀 mastering dates is so important in Tableau, your help is really appreciated
@vizwiz2 жыл бұрын
My pleasure.
@vaibhavkamble33258 ай бұрын
You are underrated sir. I like your content.
@vizwiz7 ай бұрын
Share away! That helped even more people learn. 👍🏻
@leoooo116462 жыл бұрын
That cheat sheet is awesome!!!
@vizwiz2 жыл бұрын
Thank you. I’m glad you find it useful. 👍🏻
@romanvasiura6705 Жыл бұрын
Andy, thank you! Great channel and amazing advices)
@DrJuanTaco2 жыл бұрын
Thanks Andy! Your videos are great!
@vizwiz2 жыл бұрын
My pleasure!
@FamilyDad576010 ай бұрын
Andy, this is very helpful! Can you address how or if the values would change if you change the Fiscal Year Start feature to say October? Or how to otherwise manipulate the dates vis-à-vis a Fiscal Year. Thank you!!
@vrdsp1 Жыл бұрын
Thank You Andy 🙂
@vizwiz Жыл бұрын
My pleasure!
@prashantyadav69152 жыл бұрын
Awesome Andy 👍🤞
@JD_018 Жыл бұрын
Hi Andy, amazing video. Is there a method I can use to control say order date and return date using a single date parameter? I want to do a count of both orders and returns using the corresponding date field but using a single date parameter. Many thanks
@ronenTheBarbarian2 жыл бұрын
Thanks Andy! Great video. Can you do a simple LOD vs window_functions video?
@vizwiz2 жыл бұрын
What do you mean? What’s the use case?
@apaumichael9542 жыл бұрын
Thanks Andy
@engineermajidd10 ай бұрын
Hats off to you!
@manishagrawal417 Жыл бұрын
Hello !. Amazing as usual. But one thing caught my eye. The datepart - Week is shown as 38, however, as I checked my outlook calendar shows week num as 37. Please shed some light on this.
@vizwiz Жыл бұрын
Your starting day of week is probably Sunday. Mine is Monday.
@jakubg12672 жыл бұрын
Really nice video Andy! It's getting a bit more complicated when we want to exclude weekends.
@2507041010 ай бұрын
Thanks for the video. But cheat sheet is not accessible any longer.
I have a data source that shows the MONTH Column in integers. So when I tried to use the Calculated Field DATENAME('month', MONTH) it converts to DATENAME('MONTH!,MONTH) and it won't change the month numbers to month names. Why is that?
@vizwiz2 жыл бұрын
Because the second part of the function requires a date field. Have you tried makedate to change your month # to a date?
@aniketjamode5290 Жыл бұрын
What is Start of week in datepart function?
@vizwiz Жыл бұрын
Datepart(‘day’,[Date]) = 0
@angelinajames92302 жыл бұрын
Thanks for this helpful video. This is exactly i what I wanted... I struggle a lot with date functions. Could you please make a video on MAKEDATE and how to create a date field when we don't have any date . Kindly help me on this
@vizwiz2 жыл бұрын
Makedate needs three numbers passed to it. Year,month,day. So if you want to make up a date, you could have MAKEDATE(2022,9,1) to get September 1, 2022
@angelinajames92302 жыл бұрын
@@vizwiz Thanks a lot ... 👍
@wwpharmacist Жыл бұрын
Awesom
@markkligman7177 Жыл бұрын
If I may say one thing, it would be nice if everything done was a tad slower. Between the quick talking and fast movement and clicks, its difficult to follow.
@vizwiz Жыл бұрын
Got it 👍🏻 Thanks for the feedback. The more recent videos should have a better pace.