Forum Discussion
Shelley
8 years agoPost Prodigy
How to create a new dynamic table when LOOKUPVALUE function doesn't work?
I've used the LOOKUPVALUE function a number of times in the same table to create new columns and so I know it works. I have checked and double-checked my nomenclature and it appears to be correct. I'...
- 8 years ago
What is the relationship between audit and procedures? If there's proper one to many relationship, you can get the procedure name with RELATED.
Table = ADDCOLUMNS ( FILTER ( 'Audits Table', 'Audits Table'[employeerelatedprocedureID] <> BLANK () ), "pname", RELATED ( Procedures[PROCEDURES_name] ) )If this is not your case, could you post more details, sample data for each table, relationship etc.
Eric_Zhang
8 years agoMicrosoft Employee
What is the relationship between audit and procedures? If there's proper one to many relationship, you can get the procedure name with RELATED.
Table =
ADDCOLUMNS (
FILTER (
'Audits Table',
'Audits Table'[employeerelatedprocedureID] <> BLANK ()
),
"pname", RELATED ( Procedures[PROCEDURES_name] )
)
If this is not your case, could you post more details, sample data for each table, relationship etc.