Counting selected data point

@leo_89 ,

Give this a go:

Count Points Selected = 

VAR vTable =
ADDCOLUMNS(
    VALUES( Test[Date] ),
    "@valmeas", [value_measure]
)
VAR Result =
CALCULATE(
    COUNTROWS( vTable ),
    ALLSELECTED( Test[Value] )
)
RETURN Result

I hope this is helpful. Full solution file attached.

3 Likes