March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi community,
I have a table like the example below, were i am trying to compare the difference between 2 values across months.
I want to see if there is a decrease between the qty at the start of this month vs the start of last month.
EG In the below example, i want my formula to find the first day that there is data for the previous month, and compare this against the first day there is data for the next month. (This may not always be consistent)
Is this possible ?
Many thanks !
Product | Date | QTY |
Product 1 | 01.02.2022 | 700 |
Product 1 | 14.02.2022 | 750 |
Product 1 | 01.03.2022 | 750 |
Product 2 | 14.03.2022 | 750 |
Hi thanks for the help - i have changed the data slightly so in my raw data i have a tag against each row that is the first value for the month.
I will add this as a filter on the page, and then i want to create 2 fields. Previous month QTY & This month QTY.
I want to show in a table these values across each month.
I this possible with the above method ?
Thanks !
@Caldowd98 , New measures
//based on selecteddate or or today
previous months =
var _max = maxx(allselected('Date'), 'Date'[Date]) //or//Today()
return
calculate(sum(Table[QTY]), filter(all('Date'), 'Date'[Date] = eomonth(_max,-2)+1)
//based on selecteddate or or today
next months =
var _max = maxx(allselected('Date'), 'Date'[Date]) //or//Today()
return
calculate(sum(Table[QTY]), filter(all('Date'), 'Date'[Date] = eomonth(_max,0)+1)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
93 | |
92 | |
86 | |
77 | |
49 |
User | Count |
---|---|
166 | |
149 | |
99 | |
73 | |
57 |