Forum Discussion
Edmi8
4 years agoNew Member
LookUpValue with filter
Hello everyone I am trying to create a new column with LookUpValue, but I need it to search under certain condition I am using this function: Cosecha 20220718 = LOOKUPVALUE('Modelo PY'[Fecha ...
- Anonymous4 years ago
Hi Edmi8 ,
You can create a calculated column as below in the table 'Maestro clientes':
Cosecha 20220718 = CALCULATE ( MAX ( 'Modelo PY'[Fecha Cosecha] ), FILTER ( 'Modelo PY', 'Modelo PY'[cliente_id] = 'Maestro clientes'[cliente_id] && 'Modelo PY'[Fecha Cosecha] = "20220718" ) )Best Regards
amitchandak
4 years agoSuper User
Edmi8 , You can bring column one table to another like
Table 1 new column, data from Table 2
Maxx(filter(Table2 , Table1[Client] = Table2[Client] && Table1[Month] = Table2[Month]) ), Table2[Value])