Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
how to make the below highlight in on Measure
ex ,
Us = sum( [houus] )/ 48.
UK = sum( [houus] )/ 45.
TN= sum( [houus] )/ 40
i want to make all of them in Measure
Solved! Go to Solution.
Thanks All,
i could not have solved without you , my solution is
Hi @Anonymous ,
Like this?
just create a measure:
FTE = var _US=SELECTEDVALUE('Table'[hours])/48
Var _UK=SELECTEDVALUE('Table'[hours])/45
var _UETN=SELECTEDVALUE('Table'[hours])/40
return IF(SELECTEDVALUE('Table'[item])="US",_US,IF(SELECTEDVALUE('Table'[item])="UK",_UK,_UETN))
And you can also refer to my pbix file for better understanding.
Best regards,
Community Support Team Selina zhu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Thanks All,
i could not have solved without you , my solution is
Hi @Anonymous ,
1. Create a conditional column.
2. Create New column.
Best Regards,
Shreya Mukkawar
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly and Like the solution.
when you divide 3753 on 48 it should give 77.81
thanks
Can you explain more about this problem?
It will help to solve this problem.
ex ,
Us = sum( [houus] )/ 48.
UK = sum( [houus] )/ 45.
TN= sum( [houus] )/ 40
i want to make all of them in Measure
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |