Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Everyone, I'm struggling in this code, if anyone can help please - I want to fetch only last values from different months and show in a matrix. For example -
| Jan - $4,724,484.1 |
| Feb - $6,321,244.7 |
try like
1) add a column like:
MONTH = FORMAT([Date], "mmm")
2) plot a visual with the month column and a measure like:
LastRevenue=
VAR _monthtable =
FILTER(
ALL(TableName),
MONTH([Date]) = MONTH(MAX([Date]))
)
VAR _lastdate =
MAXX(
_monthtable,
[Date]
)
RETURN
MAXX(
FILTER(
_monthtable,
TableName[Date] = _lastdate
),
TableName[Online Revenue]
)
@gfreeman thanks for the response, I have tried that however it's throwing an error. Please help me understand this
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 12 | |
| 11 | |
| 10 | |
| 7 | |
| 6 |