Forum Discussion
dynamic generateseries
Hi pani_victoria ,
Please try to create a measure with below dax formula:
Measure =
VAR _range =
SELECTEDVALUE ( 'Table'[Range] )
VAR _start =
CALCULATE (
MAX ( 'Table'[StartValue] ),
'Table'[Range] = _range,
ALL ( 'Table' )
)
VAR _end =
CALCULATE (
MAX ( 'Table'[EndValue] ),
'Table'[Range] = _range,
ALL ( 'Table' )
)
VAR _result =
GENERATESERIES ( _start, _end, 0.1 )
RETURN
IF ( HASONEFILTER ( 'Table'[Range] ), COUNTROWS ( _result ), 0 )
Please refer the attached .pbix file.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
This is not exactly what I would like to receive. As a result, a table of values should be obtained in order to then add it to the filter and the user could enter any number in the selected range into this filter
- Anonymous2 years agoNot applicable
Hi pani_victoria ,
Sorry, so far, to my knowledge, this may not be achieveable.
Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.- pani_victoria2 years agoHelper III
Thanks for the help anyway 😀