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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello All,
I need Repeated value in with respect to blank dates below i am showing image with red color values.
.pbix file:
https://drive.google.com/file/d/1p-ryWXkF0kx3VkRRPtiRjccOeja8QohZ/view?usp=sharing
Solved! Go to Solution.
Hi, @mohittimpus
Try measure as below:
Measure2 =
VAR a =
SELECTEDVALUE ( 'Date'[Date] )
VAR b =
CALCULATE (
MAX ( 'Date'[Date] ),
FILTER ( ALL ( 'Date' ), 'Date'[Date] <= a && [M] <> BLANK () )
)
RETURN
CALCULATE ( [M], 'Date'[Date] = b )
Please check my pbix file for more details.
Best Regards,
Community Support Team _ Eason
Hi, @mohittimpus
Try measure as below:
Measure2 =
VAR a =
SELECTEDVALUE ( 'Date'[Date] )
VAR b =
CALCULATE (
MAX ( 'Date'[Date] ),
FILTER ( ALL ( 'Date' ), 'Date'[Date] <= a && [M] <> BLANK () )
)
RETURN
CALCULATE ( [M], 'Date'[Date] = b )
Please check my pbix file for more details.
Best Regards,
Community Support Team _ Eason
@mohittimpus , Try a measure like
calculate([lead expected], filter(allselected(Table), Table[Date] = calculate(Max(Table[Date]), filter(allselected(Table), Table[Date] <=max(Table[Date]) && not (isblank([lead expected]))))))
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!