Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register 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!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
118 | |
79 | |
47 | |
45 | |
32 |
User | Count |
---|---|
172 | |
90 | |
66 | |
46 | |
45 |