Hi,
I've created a measure and i would like to create a what-if parameters based on values of "delai ".
How can I generate series in function of values calculated by my measure?
here, my measure range is between -59 and 273. But, that measure is updated everyday so the range could change (for example, -70 to 300)
Thank you for your help,
Andre
Solved! Go to Solution.
Hi @Anonymous ,
Would you please try the calculated table below:
Range Table =
GENERATESERIES (
MINX (
SUMMARIZE ( 'Table', 'Table'[Column], "_measure", [measure] ),
[_measure]
),
MAXX (
SUMMARIZE ( 'Table', 'Table'[Column], "_measure", [measure] ),
[_measure]
)
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
@Anonymous , I was able to create a new table based on another table
Table = GENERATESERIES(min(Customer[Age]) ,max(Customer[Age]))
@amitchandak it doesn't work because my values come from a measure. Not a value from a table.
@Anonymous Since you have already definitive range, why not generate a series directly?
Range Table = GENERATESERIES( -70, 300 )
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Hi @Anonymous ,
Would you please try the calculated table below:
Range Table =
GENERATESERIES (
MINX (
SUMMARIZE ( 'Table', 'Table'[Column], "_measure", [measure] ),
[_measure]
),
MAXX (
SUMMARIZE ( 'Table', 'Table'[Column], "_measure", [measure] ),
[_measure]
)
)
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
106 | |
80 | |
72 | |
48 | |
47 |
User | Count |
---|---|
157 | |
89 | |
81 | |
69 | |
67 |