Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi,
I want to create GENERATESERIES based on a measure:
How can I modify the measure to fix the error ?
Solved! Go to Solution.
Hi @cristianml ,
If you want to generate series from the minum VAR1 value of the table to the maxmum VAR1 value of the table, you should modify it like this:
Target =
VAR VAR1 =
DIVIDE (
( [_Actual + CBP Rev] - [_Actual + Backlog Rev] ),
[_Actual + CBP Rev]
)
RETURN
GENERATESERIES (
MINX ( ALL ( 'Table' ), VAR1 ),
MAXX ( ALL ( 'Table' ), VAR1 ),
.1
)
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @cristianml ,
If you want to generate series from the minum VAR1 value of the table to the maxmum VAR1 value of the table, you should modify it like this:
Target =
VAR VAR1 =
DIVIDE (
( [_Actual + CBP Rev] - [_Actual + Backlog Rev] ),
[_Actual + CBP Rev]
)
RETURN
GENERATESERIES (
MINX ( ALL ( 'Table' ), VAR1 ),
MAXX ( ALL ( 'Table' ), VAR1 ),
.1
)
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Do you need MAX there?
Remove MAX and then TRY >> GENERATESERIES(MIN(VAR1,MAX([VAR Rev])),.1)
Regards,
Ritesh
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.