Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am trying to do a lookupvalue formula on filtered data. I am having issues combining the two.
The goal is as follows:
Filter table 1 to only return values that = a sepcific value in a column.
Lookupvalue on table 1 to pull\match data from table 2.
Have a new column created that returns what im wanting onto table 1.
Currently i transform the data in table 1 and then do the lookup value. Trying to see if can consolodate it into a formula to save some space.
Quick example Table
| Table 1 | |
| Name | Created By |
| Task | John |
| Incident | Mark |
| Task | Cindy |
| Incident | Albert |
| Task | Tom |
| Table 2 | |
| Department | Name |
| IT | John |
| IT | Tom |
So i need to Filter to only return data that results in Task under the name column on table 1 and then i want to run a lookup value formula matching on name and returning IT from department when it matches. which looks like,
Solved! Go to Solution.
Yeah, i wrapped my lookupvalue formula in an if() statement.
IF(Table1[NAME]="sc_task",lookupvalue(table2[department],table2[username],table1[created by]))
Yeah, i wrapped my lookupvalue formula in an if() statement.
IF(Table1[NAME]="sc_task",lookupvalue(table2[department],table2[username],table1[created by]))
Solved with an if statement
Hi @Dalton948 ,
You mentioned that you have solved it, so could you please post your solution (DAX) below and accept it as a SOLUTION to make it easier for more users experiencing similar problems to find a solution faster, thank you!
Best Regards,
Dino Tao
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 11 | |
| 10 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 26 | |
| 17 | |
| 13 | |
| 10 | |
| 9 |