Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi, Power BI Community!
I am currently working on creating an income statement.
I have created a dummy data below to show you
what data I am working with.
My Objective:
To create an income statement with a left hand side column that has
Item # and Item from "Master Filter" tab in month breakdown.
It would look like below picture.
Problems:
1. Struggling to get all the data in one table to create an income statement such as above.
2. Need to calculate Sales, Margin on Operations, Net Contributions and Profit within Power BI
I think it is not diffucult at all to do above but I just cannot figure out how to do this....
Any suggestion would help me greatly.
Appreciate the support!
H
Solved! Go to Solution.
HI @hidenseek9
The easiest approach to achieve the visual below is to organise all your data into a single table with a structure similar to this
Date , Item Name , Value ----------------------------------
1-jan-16 , Volume , 100
1-Feb-16 , Volume , 120
1-Mar-16 , Volume , 100
....
1-Dec-16 , Volume , 150
1-Jan-16 , Sales , 200
etc
etc
Then you can create measures to suit using the CALCUATE and FILTER functions eg
Sales = CALCULATE(SUM([Value]),FILTER('table',Item='Volume') * ......
HI @hidenseek9
The easiest approach to achieve the visual below is to organise all your data into a single table with a structure similar to this
Date , Item Name , Value ----------------------------------
1-jan-16 , Volume , 100
1-Feb-16 , Volume , 120
1-Mar-16 , Volume , 100
....
1-Dec-16 , Volume , 150
1-Jan-16 , Sales , 200
etc
etc
Then you can create measures to suit using the CALCUATE and FILTER functions eg
Sales = CALCULATE(SUM([Value]),FILTER('table',Item='Volume') * ......
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.