Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
So I am looking to add a line that runs across the months that shows the level based on 70% of the dark blue bar (Paid Hours). I know I need to create some kind of measure and then place it in the Line y-axis space, but I cannot figure out how to get basically 70% of Paid hours. Can someone advise on what that measure would look like?
Solved! Go to Solution.
Hello @ChrisAZ ,
your new measure should look like this:
70%paidhours= [paidhoursmeasure]*0.7
if you need to calculate the 70% of the year instead of the current month shown in the graph you can do like this:
Var _year=year(selectedvalue('dates'[date]))
return
calculate([paidhourmeasure])*0.7, all('dates'), 'dates'[year]=_year
Hello @ChrisAZ ,
your new measure should look like this:
70%paidhours= [paidhoursmeasure]*0.7
if you need to calculate the 70% of the year instead of the current month shown in the graph you can do like this:
Var _year=year(selectedvalue('dates'[date]))
return
calculate([paidhourmeasure])*0.7, all('dates'), 'dates'[year]=_year
Thank you so much!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
74 | |
73 | |
56 | |
38 | |
31 |
User | Count |
---|---|
84 | |
63 | |
63 | |
49 | |
45 |