Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
i need to calculte Max dates from another existing table as per available code2 in a table view column, (not as a measure).
As per attcahment in excel can see that there are 2 table (Baseline dates & code 2). i need in table view column of code 2 Max date for each Code from Baseline date.
Max date.xlsx
in code 2 table need Max date for each activity code 2 from baseline table.
Solved! Go to Solution.
Step1: ensure your both talbe coneecteded properly, n this case, you’ll need to ensure that Activity_Code_2 is available in both the Baseline Dates table and the Code 2 table.
Calculated Column: You can use a calculated column in the Code 2 table to fetch the maximum date from the Baseline Dates table for each Activity_Code_2.
In the Modeling tab, click on "New Column" to create a calculated column. and use following DAX formuala
Max Date =
CALCULATE(
MAX('Baseline Dates'[BL1 Finish]),
FILTER(
'Baseline Dates',
'Baseline Dates'[Activity_Code_2] = 'Code 2'[Activity_Code_2]
)
)
The new column will show the maximum finish date (BL1 Finish) for each Activity_Code_2 in the Code 2 table.
Step1: ensure your both talbe coneecteded properly, n this case, you’ll need to ensure that Activity_Code_2 is available in both the Baseline Dates table and the Code 2 table.
Calculated Column: You can use a calculated column in the Code 2 table to fetch the maximum date from the Baseline Dates table for each Activity_Code_2.
In the Modeling tab, click on "New Column" to create a calculated column. and use following DAX formuala
Max Date =
CALCULATE(
MAX('Baseline Dates'[BL1 Finish]),
FILTER(
'Baseline Dates',
'Baseline Dates'[Activity_Code_2] = 'Code 2'[Activity_Code_2]
)
)
The new column will show the maximum finish date (BL1 Finish) for each Activity_Code_2 in the Code 2 table.
User | Count |
---|---|
14 | |
9 | |
7 | |
7 | |
6 |
User | Count |
---|---|
21 | |
11 | |
10 | |
10 | |
8 |