March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi PBI Experts,
I am looking for your expert advise on extrapolating usage to remaining months of the year in PBI.
The requirement is to have February closed month's actual to remaining months. E.g. if February actual is $50, the same should reflect to each month (March to December) at product/line item level.
It would be grateful, if you could share your thoughts to fix this view. Thanks in advance!
Solved! Go to Solution.
Hi @Sanjay_GB ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a date table and a measure.
DateTable = CALENDAR(DATE(2024,1,1),DATE(2024,12,31))
Measure 3 =
var a=MAXX(FILTER(ALLSELECTED('Table'),[type] IN VALUES('Table'[type])),[Date])
var b=CALCULATE(SUM('Table'[actual]),EOMONTH('Table'[Date],0)=EOMONTH(a,0))
var c=CALCULATE(SUM('Table'[actual]),FILTER('Table',EOMONTH([Date],0)=EOMONTH(MAX(DateTable[Date]),0)))
RETURN IF(EOMONTH(MAX(DateTable[Date]),0)>=EOMONTH(a,0),b,c)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Sanjay_GB ,
According to your description, here are my steps you can follow as a solution.
(1) This is my test data.
(2) We can create a date table and a measure.
DateTable = CALENDAR(DATE(2024,1,1),DATE(2024,12,31))
Measure 3 =
var a=MAXX(FILTER(ALLSELECTED('Table'),[type] IN VALUES('Table'[type])),[Date])
var b=CALCULATE(SUM('Table'[actual]),EOMONTH('Table'[Date],0)=EOMONTH(a,0))
var c=CALCULATE(SUM('Table'[actual]),FILTER('Table',EOMONTH([Date],0)=EOMONTH(MAX(DateTable[Date]),0)))
RETURN IF(EOMONTH(MAX(DateTable[Date]),0)>=EOMONTH(a,0),b,c)
(3) Then the result is as follows.
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi PBI Experts,
I have connected a folder where monthly actuals will be loaded by respective team and connected to the dashboard. Now the challenge is:
1) How can I bring months where I don't have actual but can show the latest closed month's actual
2) For example - January 2024 has 100 actuals February 2024 has 150 actuals. I need to replicate/bring 150 (of February closed) actuals to remaining months
Would it possible to help me out?
@Sanjay_GB
You also need to share some sample/dummy data that represent your actual scenario and the datamodel along the expected results. This way, we can suggest a solution that should work for you.
Can you share some sample data with the desired output to have a clear understanding of your question?
Mention whether you want a Power Query or DAX calculated column or measure.
You can either paste your data in the reply box or save it in OneDrive, Google Drive, or any other cloud-sharing platform and share the link here.
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Thanks @Fowmy for your reply. The data is huge but let me share an example. I would need to bring the closing month actuals to the remaining month. For Example: If I get 50 Actual Sale in Feb - I need to bring same 50 actual to remainig months.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
94 | |
89 | |
86 | |
77 | |
49 |
User | Count |
---|---|
164 | |
149 | |
101 | |
73 | |
56 |