Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
The problem:
I have a messure that works just fine:
CM1=CALCULATE(['Actual],'G/L Account'[A.No]<21000)
Solved! Go to Solution.
@Rygaard , Try like
CM1=CALCULATE([Actual],filter('G/L Account','G/L Account'[A.No]<SELECTEDVALUE(Ark1[konto])))
or
CM1=
var _1 = SELECTEDVALUE(Ark1[konto])
return
CALCULATE([Actual],filter('G/L Account','G/L Account'[A.No]<_1))
@Rygaard , Try like
CM1=CALCULATE([Actual],filter('G/L Account','G/L Account'[A.No]<SELECTEDVALUE(Ark1[konto])))
or
CM1=
var _1 = SELECTEDVALUE(Ark1[konto])
return
CALCULATE([Actual],filter('G/L Account','G/L Account'[A.No]<_1))
#imstupid the main reason it did not work was ofc. that i made a connection between my selection table and the Acount table - witch ofc applyed the selection across all calculations.. after i removed that it worked as it should...