Forum Discussion
Cannot Identify the table that contain column
- 2 years ago
Hi, Sri_phani
As i understood your problem you have Three slicer in page
1. Employee Name2. site+LOB
3. Dates
Try below measure
create Measure for attain_measureattain_measure= var Numerator = SUM('Metric Table'[Resolve Numerator]) var Denominator = SUM('Metric Table'[Resolve Denominator])) return (divide(Numerator,Denominator))/0.60Create RankX_measure for your Card visuals
use below measure for your Card visualsRankX_measure = var Table_ = addcolumn( filter( all('Metric Table'[Employee Name], 'Metric Table'[Site + LOB] ), 'Metric Table'[Site + LOB] = "Hyderabad - Rider"), "attain",[attain_measure]) return rankx(Table_,[attain_measure],,desc,dense)Best Regards,
DangarIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Sri_phani
As i understood your problem you have Three slicer in page
1. Employee Name
2. site+LOB
3. Dates
Try below measure
create Measure for attain_measure
attain_measure=
var Numerator = SUM('Metric Table'[Resolve Numerator])
var Denominator = SUM('Metric Table'[Resolve Denominator]))
return
(divide(Numerator,Denominator))/0.60
Create RankX_measure for your Card visuals
use below measure for your Card visuals
RankX_measure =
var Table_ =
addcolumn(
filter(
all('Metric Table'[Employee Name], 'Metric Table'[Site + LOB] ),
'Metric Table'[Site + LOB] = "Hyderabad - Rider"),
"attain",[attain_measure])
return
rankx(Table_,[attain_measure],,desc,dense)
Best Regards,
Dangar
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Sri_phani2 years agoHelper III
Hi Dangar332 .
Thank you for responding!
I only have employee name and Date as slicers. But the objective is to identify the rank amount particular LOB ( team). Example : total 200 employees are there. I don't need rank among 200 employees. I need rank among team of 50 employees. For that I tried above approach. Does your measure, help me with my problem?