month calculation
6 TopicsMultiplying Measures by Varied Month Number
I am trying to create a measure to display the following equation: (Annual Target / Months) * (Current Month Number). I have created the following equation and understand that it works correctly, up until the IF function. I have highlighted this in bold. I do not understand my mistake. Live Target = (([TARGET 2024]) / MAX( MonthNumber[Month Number])) * (MONTH(Today()) (MONTH(Today()) IF(_month > 3, _month-3, _month+9))) Key here is that I am trying to vary the current month number so that April is regarded as the 1st month of the year.Solved664Views0likes2CommentsHow to compare all-time monthly values and output percentage changes ?
Hello Community, I am experiencing difficulty creating a DAX Command that compares my monthly averages and percentage changes. I need to see all-time average rather than the average for the month. I will include the information below. I need to display the % change in a table with the following columns: Product Identification, (All time - 2022-9), (All time - 2022-10), and % change. I do not own the live dataset. Any help would be greatly appreciated. I will provide images below. Thank you! Best,602Views0likes2CommentsShow MoM % and YoY % at the end of a Matrix Visual
Hi there, I have a Matrix Visual which shows a result for each row for each month. I would like to show the MoM% and YoY % change based on the last date in table only (as pictured below) I can get MoM/YoY% to work, but cannot figure out how to only apply this to the last date in the table. Can anyone help with this?Solved1.1KViews0likes2Commentsfind cumulative count following monthly criteria
i want to calculate distinct cummulative count of users by month in the follwing criteria assume we have: total users month 30 may2022 20 april2022 21 march2022 19 february2022 i want to find distinct cumulatice count for each month plus the previous month for example, for the month of may i want to see distinct cumulative active users from may and april and for april i want to see active users from april and march and same thing for march and feb assume the result will be now: total users month 38 may2022 35 april2022 25 march2022 23 february2022 and following the same criteria to find cumulative count for the each month with 2 previous month for example,for the month of may i want to see active users from may and april and march and for april i want to see active users from april and march and february and same thing for january assume the result will be total users month 53 may2022 50 april2022 40 march2022 33 february2022 after that i want to apply same calculation for 3,4,5 previous months what kind of dax and functions can help me achieve the calculation?Solved751Views0likes2Comments- 788Views0likes2Comments
Calculate average sales for calendar month
Here we have found a simple way to find out the average sales for the calender month. Calender Qunatity Sum = Var startMonth = Date(Year(Today()),1,1) Var EndMonth = EOMONTH ( TODAY (),-1) Return Calculate(SUMX(Table Name,Qunatiy Column), Filter(All(Table Name), 'Date Table >= startMonth && 'Date Table<= EndMonth ) ) Calender Quantity Average = Var Month = MONTH(TODAY()) - 1 return divide(Calender Qunatity Sum,Month,0)557Views1like1Comment