Forum Discussion
AllanBerces
2 years agoPost Prodigy
Lookup with Filter
Hi Good day, Can anyone assist me on my code, base from my current code i want to add filter on a specific column. My current code: I want to add filter on coloumn: Table: BSP TA Column...
- 2 years ago
Hi Samarth_18 thank you for the help, its working now.
Ashish_Mathur
2 years agoSuper User
Hi,
Try this
Project Name = LOOKUPVALUE('Main Data'[Project Name], 'Main Data'[Job card], 'Sign off'[Job Card] ,'Main Data'[Main Cat.],"Q",'Main Data'[Project Name],"ABCDE")
This will return a blank because there is no ABCDE entry in the Project name column.
AllanBerces
2 years agoPost Prodigy
- Samarth_182 years agoCommunity Champion
Hi AllanBerces ,
You could try the following code:-
Project Name = LOOKUPVALUE( 'Main Data'[Project Name], 'Main Data'[Job card], RELATED('Sign off'[Job Card]), 'Main Data'[Main Cat.], "Q", 'Main Data'[Project Name], "ABCDE" )- AllanBerces2 years agoPost Prodigy
Hi Samarth_18 thank you for the help, its working now.