Forum Discussion
Anonymous
2 years agoNot applicable
Calculate Story Point Value between two tables
I have a two tables in Power BI - One shows a "tag" type with various inputs within it and another table that expresses the value I want to associate with the "tag" I want to get a value where the co...
- Anonymous2 years ago
Hi Anonymous ,
Here are the steps you can follow:
1. Create measure.
Measure = var _count= CALCULATE( COUNT('Data Table1'[Work Item ID]), FILTER(ALL('Point Table2'),'Point Table2'[Tags1]=MAX('Data Table1'[Tag]))) return _count * MAX('Point Table2'[Points])Measure 2 = SUMX( VALUES('Data Table1'[Tag]),[Measure])2. Result:
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
Anonymous
2 years agoNot applicable
Hi Anonymous ,
Here are the steps you can follow:
1. Create measure.
Measure =
var _count=
CALCULATE(
COUNT('Data Table1'[Work Item ID]),
FILTER(ALL('Point Table2'),'Point Table2'[Tags1]=MAX('Data Table1'[Tag])))
return
_count * MAX('Point Table2'[Points])Measure 2 =
SUMX(
VALUES('Data Table1'[Tag]),[Measure])
2. Result:
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