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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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]))))))
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.