Actual v/s Rolling Budget in Power BI

Поделиться
HTML-код
  • Опубликовано: 29 ноя 2024

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

  • @GoodlyChandeep
    @GoodlyChandeep  6 месяцев назад +2

    Download the file ⬇ - goodly.co.in/actual-vs-rolling-budget-power-bi
    Mastering DAX & Data Modeling Course 📊 - goodly.co.in/learn-dax-powerbi/

  • @anillpatel
    @anillpatel 6 месяцев назад +3

    Absolutely amazing.
    So well explained. This is an example you can literally use in your company.
    Can you imagine meeting Chandeep and going out for dinner. The amount you would learn would be priceless....,

  • @shubhabratadey
    @shubhabratadey 6 месяцев назад +1

    You are just Hans Zimmer of DAX....Just poetry for you...Really appreciate the way you explain us the complicated DAXs...Not all of us are Pro and it really helps when we have you to address complicated scenarios. I always wait for videos to pop up...Keep educating us...🤗

  • @tak0331
    @tak0331 5 месяцев назад

    Masterful display on how to keep it simple. Thanks Chandeep!

  • @Murli181
    @Murli181 6 месяцев назад

    This is what I call Michael Holding. Poem in motion. fantabulous. Great Job Chandeep.

  • @getsetgoo3334
    @getsetgoo3334 6 месяцев назад +5

    I always learn new stuff from your videos, thanks for sharing

  • @sourabhpatel3834
    @sourabhpatel3834 5 месяцев назад

    00:02 Calculating rolling budget in Power BI
    02:01 Adjusting data model for calculations
    03:55 Creating relationships between tables in Power BI
    05:39 Utilizing inactive relationships for dynamic filtering in Power BI
    07:23 Creating a period between start date and end date in Power BI using DAX functions
    09:11 Calculating sales for a specific period in Power BI.
    11:13 Activating relationship between dates in Power BI
    13:07 Creating budgets based on slicer selections
    15:00 Creating a new measure to consolidate actual and budgeted sales numbers.
    16:49 Using conditional formatting to visually indicate actuals and budgets
    18:27 Handling missing data in Power BI

  • @sagayamuthu5136
    @sagayamuthu5136 5 месяцев назад

    This was the exact video I was looking for 👏🏻👏🏻

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

    This is so cool. Will need to watch it again for my next sprint

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

    One word...Amazing @goodly...

  • @vishalnasre1251
    @vishalnasre1251 6 месяцев назад

    Implemented the something similar long back, I think in 2022
    Addition to this we can try is instead of budget show the forecasted values for those month and then
    add the add one more measure which shows in comparison of actual and forecasted on existing months
    and conditional formatting accordingly.

  • @tinaflemons263
    @tinaflemons263 6 месяцев назад

    Great video, how would you add additional font formatting to indicate you exceeded quota

  • @stephencross4978
    @stephencross4978 5 месяцев назад

    Brilliant video and a great idea that I can use to impress by sales manager. thanks again !!

  • @megabuilds3007
    @megabuilds3007 5 месяцев назад

    That's amazing. One issue facing is: Mon-Year soring. How to sort it? What is YM Sort col in your calendar?

  • @flynnfu9874
    @flynnfu9874 6 месяцев назад

    Thanks for the great solution, I was wondering is there one way to calculate the YTD cumulative sum ?

  • @kiransawant5991
    @kiransawant5991 6 месяцев назад

    Great way to teach , can we also get an course on DAX studio. Thankyou

  • @brightonalbert3237
    @brightonalbert3237 5 месяцев назад

    Thanks well explained, that total is confusing is it for actual or for the Budget i would suggest what if you have total actual and Total budget which would be in brackets also can we be able to see the budgeted amounts for those months in blue next to the actual or percentage

  • @sajalnagar2128
    @sajalnagar2128 6 месяцев назад

    Hey Chandeep, Thanks for this. This is a great help.I have been working on something similar- my only question is around the measure 'Sales Until' for the VAR 'EndDate' can we use SELECTEDVALUE instead of MAX as as my data source will have entries/data for subsequent periods but month is not finalized for those subsequent periods?

  • @karinamatvejeva3164
    @karinamatvejeva3164 6 месяцев назад +2

    It is amazing 🤩 thank you so much!!!❤❤❤

  • @deda118
    @deda118 Месяц назад

    Can you create a matrix with months in columns and then a YTD and total column. Rows are plan (row 1), actuals (row 2). Row 3 is percent variance. In the YTD column, numbers are dynamic, I.e. as each month is complete, the YTD column updates plan and actuals to YTD. Total is total plan for the full year and actuals are just sum of YTD.

  • @chrism9037
    @chrism9037 6 месяцев назад

    Great video as always, thanks Chandeep!

  • @gurvindersingharora5301
    @gurvindersingharora5301 6 месяцев назад

    Hello Sir,
    When to combine ALL function with Calculate + Filter function in DAX in Detail ?
    Please make a video of it 🙏 ❤

  • @vansree
    @vansree 6 месяцев назад

    Slight variation scenario: If a requirement is to retrieve actuals for a given segment/category up to a certain month and If there are no actuals available, you should use the budget amount instead. The COALESCE function can help you achieve this. Let’s break it down:
    Requirement: Retrieve actuals for on or before a certain month.
    Caveat: If there are no actuals in a given segment, use the budget amount.
    Formula: COALESCE([Actuals Amount], [Forecast Amount])
    Here’s how you can interpret this formula:
    If the [Actuals Amount] is available, it will be used.
    If the [Actuals Amount] is not available (i.e., null), the [Forecast Amount] will be used instead.
    Feel free to apply this formula in your data processing or reporting tasks.
    🙂

  • @MoonShine-bs6cl
    @MoonShine-bs6cl 6 месяцев назад

    Can you please make a video on how to filter the 2 columns of two different table in one slicer using dax, like how we have the custom visual of hierarchy slicer, same way how to achieve by dax.... It would be a new learning.. Thanks a lot

  • @faisalag9611
    @faisalag9611 6 месяцев назад

    Awesome,bang on target. Well explained, thanks for sharing 😊.

  • @karthikeyankms8672
    @karthikeyankms8672 6 месяцев назад

    Hi,
    Is there any possible way to create custom functions and save as a separate file and import those functions into all pbix files?

  • @unnikrishnansanthosh
    @unnikrishnansanthosh 6 месяцев назад

    thank you for sharing this new idea

  • @zahir585
    @zahir585 6 месяцев назад

    It doesn’t get better than this ❤❤❤🙌🏻✌🏻

  • @bharatdhawan66
    @bharatdhawan66 6 месяцев назад

    amazing video, an eye opener

  • @vishalborule1058
    @vishalborule1058 3 месяца назад

    how to add MTD, YTD and full year calculation of variance in this matrix

  • @Go-Neil
    @Go-Neil 6 месяцев назад

    This is super awesome 😎

  • @petercompton538
    @petercompton538 3 месяца назад

    Brilliant!

  • @datareggibi
    @datareggibi 6 месяцев назад

    Awesome guy, thans for share!

  • @bhuvandesai1
    @bhuvandesai1 6 месяцев назад

    Hello Chandeep, I would like to enroll for Power BI and Power Query Course from Basic to Expert Level. Do you have such course please?

    • @GoodlyChandeep
      @GoodlyChandeep  6 месяцев назад

      Can you please drop me an email - goodly.wordpress@gmail.com

  • @labcdel4384
    @labcdel4384 6 месяцев назад

    Banger video as usual.

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

    How can we create actual vs budget for same period..

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

    I am getting an error when I add the date from the copy table to the column side it generate the error "Cant determined relationships between the fields"

  • @geovanrocha2822
    @geovanrocha2822 6 месяцев назад

    That's amazing!

  • @sanjeevsoni6793
    @sanjeevsoni6793 6 месяцев назад

    Excellent ❤

  • @MS-sb3gv
    @MS-sb3gv 6 месяцев назад

    Nice!

  • @ahmesamsaed5961
    @ahmesamsaed5961 6 месяцев назад

    wonderfull

  • @asimansari8816
    @asimansari8816 6 месяцев назад

    Guru 👍

  • @abacusdotcom
    @abacusdotcom 6 месяцев назад

    Many Thanks.