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.
Hey everyone,
So, the problem is that a fairly simple measure does not return a value twice or more if the value of 'Measure 1' is same:
MFR =
DIVIDE (
SELECTEDVALUE('Table'[FR]), 12
)
As you can see, after returning 8 once, it doesn't do anything until it gets 9, then 10. There are three 10 values, and it returns only one of them. Same issue with other values.
How do I fix it so it could return values?
Solved! Go to Solution.
@Anonymous
Please try
MFR =
DIVIDE (
CALCULATE ( SELECTEDVALUE ( 'Table'[FR] ), ALLSELECTED ( 'Date' ) ),
12
)
@Anonymous
Please try
MFR =
DIVIDE (
CALCULATE ( SELECTEDVALUE ( 'Table'[FR] ), ALLSELECTED ( 'Date' ) ),
12
)
Hi @Anonymous
Please provide sample of the data