Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi, I have a set of data that is completely normalized. I'm trying to create a column that pulls out an individual "label". This is where I'm at right now.
Date =
CALCULATETABLE(
SUMMARIZE('Oracle 001 - Latest Data','Oracle 001 - Latest Data'[Value])
,'Oracle 001 - Latest Data'[Label]="Date")
I'd like to see this value across the entire list for that single project. Not just where that field is, and then format it as a date?
Hi @Germj ,
Try this as a calculated column but change the table and column names accordingly:
=
CALCULATE (
MAX ( Data[Value] ),
FILTER ( ALLEXCEPT ( Data, Data[projectnumber] ), Data[Label] = "Date" )
)
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 23 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 39 | |
| 31 | |
| 18 | |
| 17 | |
| 15 |