Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi, I have data similar to below:
| Date | A | B | C |
| 10/25/2022 | |||
| 10/19/2022 | |||
| 10/5/2022 | 10 | 5 | 4 |
| 10/3/2022 | |||
| 10/2/2022 | |||
| 9/28/2022 | 33 | 7 | 87 |
How can I pull the latest date where data is present using a measure? Which in this case is 10/5/2022
Solved! Go to Solution.
Hello, @Anonymous
LatestDateWithData =
MAXX(
FILTER('Table',
NOT(ISBLANK('Table'[A]) || 'Table'[A] = "") &&
NOT(ISBLANK('Table'[B]) || 'Table'[B] = "") &&
NOT(ISBLANK('Table'[C]) || 'Table'[C] = "")
),
'Table'[Date]
)
If you want OR instead of AND, you can change && to ||
Hello, @Anonymous
LatestDateWithData =
MAXX(
FILTER('Table',
NOT(ISBLANK('Table'[A]) || 'Table'[A] = "") &&
NOT(ISBLANK('Table'[B]) || 'Table'[B] = "") &&
NOT(ISBLANK('Table'[C]) || 'Table'[C] = "")
),
'Table'[Date]
)
If you want OR instead of AND, you can change && to ||
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 38 | |
| 38 | |
| 28 | |
| 27 |
| User | Count |
|---|---|
| 124 | |
| 88 | |
| 73 | |
| 66 | |
| 65 |