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.
I am looking to do a LOOKUPVALUE but this a where clause.
I have 2 tables.
I want to look up the old pc name
PCS
EMAIL|ComputerName|Status
USERS
USERNAME|Email
So this lookup works fine
LOOKUPVALUE can have multiple searches
https://docs.microsoft.com/en-us/dax/lookupvalue-function-dax
you can do the following
OLDPC = LOOKUPVALUE(PCS[ComputerName], PCS[Email], USERS[Email], PCS[Status], "OLD")