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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I have been trying to replicate something I had been doing very manually on Excel, involving a VLOOKUP then counting non blanks in the result. I have attached the sample data for that purpose, and this is the working to replicate it in Power BI.
Solved! Go to Solution.
Hi @maashi ,
I can not see the sales order type in the sample data.
Based on the description, try to use the following dax formula.
Working Column =
VAR _order = 'Table2_2'[Original Sales Order]
RETURN
MAXX(
FILTER(
'Table2_2',
'Table2_2'[Sales Order No] = _order &&
'Table2_2'[Sales Order Type] IN {"Type1", "Type2"}
),
'Table2_2'[Sales Order No]
)
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @maashi ,
I can not see the sales order type in the sample data.
Based on the description, try to use the following dax formula.
Working Column =
VAR _order = 'Table2_2'[Original Sales Order]
RETURN
MAXX(
FILTER(
'Table2_2',
'Table2_2'[Sales Order No] = _order &&
'Table2_2'[Sales Order Type] IN {"Type1", "Type2"}
),
'Table2_2'[Sales Order No]
)
Best Regards,
Wisdom Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 19 | |
| 11 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 20 | |
| 12 | |
| 10 |