Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi All, I have attached a sample data where i have two sheets in Excel.
The data which i want from sheet 2 in sheet 1 is cloud classifciation column in sheet 1 cloud classification column but based on the condition that it picks the cloud classification value based on the latest date for the same name which exactly matches in sheet 1 and sheet 2.
I am sorry @Jihwan_Kim . I am actually looking for an Excel formula. If you can help me with it? I accidentally posted here on the Power BI community.
Hi,
I assume the two tables have the relationship like below.
Please check the below picture and the attached pbix file.
It is for creating a new column.
Classification CC =
SUMMARIZE (
CALCULATETABLE (
Sheet2,
TREATAS (
GROUPBY (
RELATEDTABLE ( Sheet2 ),
Sheet2[Name],
"@latest", MAXX ( CURRENTGROUP (), Sheet2[Date] )
),
Sheet2[Name],
Sheet2[Date]
)
),
Sheet2[Classification]
)
If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.
User | Count |
---|---|
21 | |
19 | |
12 | |
10 | |
9 |
User | Count |
---|---|
30 | |
25 | |
15 | |
13 | |
10 |