Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 |
---|---|
25 | |
12 | |
8 | |
6 | |
6 |
User | Count |
---|---|
26 | |
12 | |
11 | |
8 | |
7 |