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

  • @datatutorials1
    @datatutorials1 Год назад +1

    If you are using old superstore sales data to practice YTD, it won't give you the values as you will not have data for 2023 year. To convert 'Order Date' to 2023 if you are using old date the write a calculation for new date as DATEADD('year',1, [order_date]), and then use this new date for calculations. Else download the latest data from description box.
    Hope this helps. Thanks for watching!

    • @prajjwaljaiswal3419
      @prajjwaljaiswal3419 Год назад

      Please revisit your playlist , Saurov Joshi ka vlog hai isme

  • @datatutorials1
    @datatutorials1 Год назад

    PYTD by Fixed LOD
    { FIXED YEAR([Order Date]): SUM(IF YEAR([Order Date])=
    {MAX(YEAR([Order Date]))}-1
    AND
    [Order Date]

  • @mannahchat
    @mannahchat 2 месяца назад

    What about just a basic old previous ytd date filter? Like I only want to show a count of our contracts that started from 1/1/2023-7/29/2023 (today is 7/29/2024) and I want that to dynamically update as the year goes on. How would I build that? It seems very hard for such a simple ask, since YTD date filters are an out of the box option

  • @bkkoumi
    @bkkoumi 4 месяца назад

    Thank you, this instructive video. Can you help create a calculation that can be dynamically applied to all date sets (Year and month) and visualized by changing the dates (Drop down list)?

  • @gudiatoka
    @gudiatoka Год назад

    { FIXED YEAR([Order Date]) :SUM(IF YEAR([Order Date])={MAX(YEAR([Order Date])-1)}
    and [Order Date]

  • @sumitchaudhari5815
    @sumitchaudhari5815 8 месяцев назад

    sir can you make video on tableau server( by taking some use cases and cover how you give permission to which stakeholder like whole process done by tableau developer) and on mtd, mtd, qtd, yoy, mom, wow for fiscal year and can you create one dashboard for it and add those comparison signs everything in one video it will be very helpful and explain in a same way as you have explain in this video. i liked the way you have explained.

  • @Time_Traveller_Dubai
    @Time_Traveller_Dubai Год назад

    Sir today i was doing same but not getting value it's showing blank means there's no update data year of 2023 then how can i do it the calculation can we use there as max(order date) function

  • @gudiatoka
    @gudiatoka Год назад

    bhai name change kar liye??

  • @sbbb2884
    @sbbb2884 Год назад

    Create new order date (e.g. if current year is 2023 then make sure new order date should have 2023) and show below columns in the text table.
    Year
    Quarter
    Month
    SUM(Sales)
    YTD Sales
    QTD Sales
    MTD Sales
    How to solve this question

  • @avinayakchoudhary4172
    @avinayakchoudhary4172 Год назад

    please make video for power bi

  • @gudiatoka
    @gudiatoka Год назад

    so...bhai as it is 2023 ,, all should b false only [order date]

    • @datatutorials1
      @datatutorials1 Год назад +1

      Modify your data to convert date to 2023 and then practice

    • @gudiatoka
      @gudiatoka Год назад

      @@datatutorials1 tnxxxx

    • @rambo6240
      @rambo6240 Год назад +1

      You can use DATEADD function to make the order dates in sync with the current year like DATEADD('year',+-x, [order_date])