This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello everybody,
I am new to PowerBI and have been trying to write a DAX formula to create a very simple measure to use in my visuals.
I want to know the latest value by category (topic & type!) whereas there are different dates for the different categories and the table is updated regularily (most recent date topic A, AC: 28.01.2023; most recent date Topic B, AC: 31.01.2023).
So what would for example be the specific formula for the value of
- the latest date (in here 28.01.2023)
- for topic A
- type AC ?
Thanks a lot for your help 🙂 !
Solved! Go to Solution.
Hi, @CuriousMonkey
You can try the following methods.
Measure =
Var _maxdate=CALCULATE(MAX('Table'[Date]),FILTER(ALL('Table'),[Topic]="A"&&[Type]="AC"))
Return
CALCULATE(MAX('Table'[Value]),FILTER(ALL('Table'),[Date]=_maxdate&&[Topic]="A"&&[Type]="AC"))
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @CuriousMonkey
You can try the following methods.
Measure =
Var _maxdate=CALCULATE(MAX('Table'[Date]),FILTER(ALL('Table'),[Topic]="A"&&[Type]="AC"))
Return
CALCULATE(MAX('Table'[Value]),FILTER(ALL('Table'),[Date]=_maxdate&&[Topic]="A"&&[Type]="AC"))
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi v-zhangti,
thanks a lot for your help - this is exactly what I was looking for!
Best,
CuriousMonkey
For the latest date for topic A I got
Hi FreemanZ,
thanks a lot for your reply!
So what do I do exactly if I just want to get the latest value of Topic A, Type AC?
I just need a single value, not a list of all latest values by all categories.
Thanks again 🙂
try to plot a tabe visual with Topic, Type columns and a measure like:
LatestValue =
MAXX(
TOPN(
1,
TableName,
TableName[Date],
),
TableName[Value]
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 27 | |
| 26 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 36 | |
| 32 | |
| 26 | |
| 23 |