The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I would like show in MAX value in martix excluding last month.
I have a measure as
CALCULATE( Max(tables[sale_sum]), FILTER( tables, tables[date] < DATE(YEAR(MAX(tables[date])), MONTH(MAX(tables[date])), 1) ) )
But showing only one month exlcuding last month. I.e in matric row for customer account, column YearMonth and value for MaxValue
Thanks
Solved! Go to Solution.
Hi @tamerj1 thanks for your reply. but it doesnt work. Anyway there is a function
Hi @tamerj1 thanks for your reply. but it doesnt work. Anyway there is a function
Hi @mmh
not 100% sure what the requirement is but please try
MaxValue =
MAXX (
FILTER (
SUMMARIZE ( tables, tables[Customer Account], tables[YearMonth] ),
tables[YearMonth] < MAX ( tables[YearMonth] )
),
CALCULATE ( SUM ( tables[sale_sum] ) )
)
User | Count |
---|---|
20 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
28 | |
12 | |
12 | |
9 | |
8 |