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.
Hi All,
I have 2 table visuals in PowerBI.
Table 1-
Table 2-
I have the same 2 tables in excel. And this is the formula I have used in excel.
=INDEX('Planning Calendar 122921'!$A$1:$J$71,MATCH('Part Analysis'!S359,'Planning Calendar 122921'!A:A,0),10)
How can I do the same for the column 'Name' in table 1 and 'Planning Calender' in table 2 and get the Order cycle implemented in table 2?
Any help is appreciated!
Thank you!
Megha
Solved! Go to Solution.
Hi,
You could try this kind of measure:
[Measure] =
var _Selection = MAX('table2'[PLanningCalendar])
CALCULATE(MAX('table1'[Order cycle]),ALL(table1),'table1'[Name]=_Selection)
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
Hi,
You could try this kind of measure:
[Measure] =
var _Selection = MAX('table2'[PLanningCalendar])
CALCULATE(MAX('table1'[Order cycle]),ALL(table1),'table1'[Name]=_Selection)
I hope this post helps to solve your issue and if it does consider accepting it as a solution and giving the post a thumbs up!
Proud to be a Super User!
User | Count |
---|---|
28 | |
12 | |
8 | |
7 | |
5 |
User | Count |
---|---|
36 | |
14 | |
12 | |
7 | |
7 |