Hello, I'm looking to create a dashboard which visualises our supplier costs and has the ability to compare them to our forecast numbers/previous years (FP, RF0, FY22 etc). All the data would come from Hyperion. Is anyone able to advise how I would start this? Thank you
Solved! Go to Solution.
Hi @tommat01 ,
To connect to the Hyperion data source in Power BI Desktop, you can follow these steps:
Or you can consider the link:
https://community.powerbi.com/t5/Desktop/Oracle-Hyperion-Essbase-Essbase-connector/m-p/826346
https://learn.microsoft.com/en-us/power-query/connectors/essbase
If you want to compare data from previous years, you can consider the following formula:
Cureent Year =
SUMX(
FILTER(ALL('Table'),
YEAR('Table'[Date])=YEAR(TODAY())),[Value])
FY22 =
SUMX(
FILTER(ALL('Table'),
YEAR('Table'[Date])=YEAR(TODAY())-1),[Value])
The first two years =
SUMX(
FILTER(ALL('Table'),
YEAR('Table'[Date])=YEAR(TODAY())-2),[Value])
If it doesn't meet your expectations, can you express your results in the form of pictures, we can better help you
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @tommat01 ,
To connect to the Hyperion data source in Power BI Desktop, you can follow these steps:
Or you can consider the link:
https://community.powerbi.com/t5/Desktop/Oracle-Hyperion-Essbase-Essbase-connector/m-p/826346
https://learn.microsoft.com/en-us/power-query/connectors/essbase
If you want to compare data from previous years, you can consider the following formula:
Cureent Year =
SUMX(
FILTER(ALL('Table'),
YEAR('Table'[Date])=YEAR(TODAY())),[Value])
FY22 =
SUMX(
FILTER(ALL('Table'),
YEAR('Table'[Date])=YEAR(TODAY())-1),[Value])
The first two years =
SUMX(
FILTER(ALL('Table'),
YEAR('Table'[Date])=YEAR(TODAY())-2),[Value])
If it doesn't meet your expectations, can you express your results in the form of pictures, we can better help you
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!