The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi @Analitika ,
You can try using FIRSTNONBLANK(Tablename[Columnname], 1) instead of LOOKUPVALUE.
test=
CALCULATE (
FIRSTNONBLANK ( Tablename[Columnname], 1 ),
FILTER ( ALL ( Tablename), Tablename[UniqueID] = Table2 name[UniqueID2] )
)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Analitika ,
You can try using FIRSTNONBLANK(Tablename[Columnname], 1) instead of LOOKUPVALUE.
test=
CALCULATE (
FIRSTNONBLANK ( Tablename[Columnname], 1 ),
FILTER ( ALL ( Tablename), Tablename[UniqueID] = Table2 name[UniqueID2] )
)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.