Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!View all the Fabric Data Days sessions on demand. View schedule
hello everyone.
I have a dax measure question, and I would appreciate anyone who can help.
The Dax measure I am trying to create should sum values between months and increase in by "x" percentage each month after
To be more precise am trying to:
please see the table below for reference, and the desired outcome as well
I appreciate all the help I can get. Thank you!
Solved! Go to Solution.
Hi @Anonymous
You want a measure or a calculated column? Here is a column
Column =
VAR CurDate = Table1[Date]
VAR FirstValue = SUM(Table1[value])
VAR N = COUNTROWS( FILTER(Table1,Table1[Date]<CurDate))-1
RETURN
IF(Table1[value]=BLANK(),FirstValue+0.02*N,Table1[value])
HI @Anonymous,
I think you can write a measure with variable and summarize function and replace the blank value to 0.02, then you can summary them based on the current date.
measure =
VAR currDate =
MAX ( 'Table'[Date] )
VAR summary =
SUMMARIZE (
ALLSELECTED ( 'Table' ),
[Date],
"Replaced", MAX ( MAX ( 'Table'[Value] ), 0.02 )
)
RETURN
SUMX ( FILTER ( summary, [Date] <= currDate ), [Replaced] )
Regards,
Xiaoxin Sheng
HI @Anonymous,
I think you can write a measure with variable and summarize function and replace the blank value to 0.02, then you can summary them based on the current date.
measure =
VAR currDate =
MAX ( 'Table'[Date] )
VAR summary =
SUMMARIZE (
ALLSELECTED ( 'Table' ),
[Date],
"Replaced", MAX ( MAX ( 'Table'[Value] ), 0.02 )
)
RETURN
SUMX ( FILTER ( summary, [Date] <= currDate ), [Replaced] )
Regards,
Xiaoxin Sheng
Hi @Anonymous
You want a measure or a calculated column? Here is a column
Column =
VAR CurDate = Table1[Date]
VAR FirstValue = SUM(Table1[value])
VAR N = COUNTROWS( FILTER(Table1,Table1[Date]<CurDate))-1
RETURN
IF(Table1[value]=BLANK(),FirstValue+0.02*N,Table1[value])
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!