The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.