98.7% Of all customers recommend us, we're so confident about our results we publish all reviews and stats
View Live Stats View ReviewsForum home » Delegate support and help forum » Microsoft Power BI training and help » Annualised Financial Year
Annualised Financial Year
· Low Priority · Version 365
Michael has attended:
Power BI Modelling, Visualisation and Publishing course
Annualised Financial Year
I have data for hundreds for non-conformances, I will make a reference table to create financial years.
What would be the best way to create an annualised DAX formula that didn't need manual intervention each year?
RE: Annualised Financial Year
Hi Michael,
Thankyou for your question to the forum
In order to help solve your problem, I will need some more detail, ie. a sample of your data. You can block out any sensitive info. Please send it to:
info@stl-training.co.uk
Also, I assume when you mention a reference table to create financial years, you mean a date table. If you could send this as well, that would be great
Kind regards
Martin
RE: Annualised Financial Year
Hi,
So I have three tables:
1) A Financial Year Table FY[] that has a column a month year "MMM YYYY" and one for the corresponding Financial Year
Jan 2024 | FY24
2) I have a DateDimension Table that contains every date until 2044, it also relates the month year column from Financial Year table, so that it links the FY to a specific date
3) I have a raw data table that contains all quality defects raised by a customer, this table contains the date the defect was raised in the system and the type of defect.
My goal is to have a pareto of the top defect types by financial year (including annualised for current Financial year). The struggle is that when we are in FY24, i would like to have it annualised, so that I can see where we are headed improving or deteriorating.
Do you have any ideas for a measure and calculation that could link these tables?
Thanks
Michael
RE: Annualised Financial Year
Hi Michael,
Thanks for your follow up information explaining your specific issue around annualising main defects for a financial year.
It sounds like want you need is very complex so I'm not able to give you a finished solution. However, what I can suggest is a way to annualise in a dynamic way the count of defects based on how far into the financial year the defect occurred:
DIVIDE(COUNT([KMS Main Defects])*365.25,
DATEDIFF(DATE(YEAR(TODAY()),07,01),
TODAY(),DAY))
I hope this measure goes some way to arriving at a solution
Kind regards
Martin
(IT Trainer)
Welcome. Please choose your application (eg. Excel) and then post your question. Our Microsoft Qualified trainers will then respond within 24 hours (working days). Frequently Asked Questions
Any suggestions, questions or comments? Please post in the Improve the forum thread. |
Power BI tip:Optimize Report PerformancePay attention to report performance by optimizing your data model and report design. Use the Performance Analyzer tool to identify bottlenecks in your report and improve loading times. Techniques such as using summarisation, avoiding unnecessary visuals, and optimizing DAX queries contribute to a faster and more responsive report. |