The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |